1
0
mirror of https://github.com/exane/not-gwent-online synced 2025-08-03 12:53:28 +00:00

simple register

This commit is contained in:
devfake
2015-06-23 16:24:49 +02:00
parent dbe76f7038
commit 1fa8ef073d
3 changed files with 35 additions and 2 deletions
site
client
app
modules
session
components
assets
server
app

@@ -1,5 +1,23 @@
<?php
// todo: move to controllers
use Gwent\User;
use Illuminate\Support\Facades\Request;
Route::group(['prefix' => 'api'], function() {
post('/register', function() {
$user = new User();
$user->username = Request::input('username');
$user->email = Request::input('email');
$user->password = bcrypt(Request::input('password'));
$user->save();
Auth::login($user);
});
});
get('/lobby', function() {
return innerView();
});