-
Notifications
You must be signed in to change notification settings - Fork 68
Default Package Routes v1.*
Ryan Durham edited this page Jan 19, 2015
·
1 revision
These are the routes provided by Sentinel, as of v1.1:
URI | Name | Action |
---|---|---|
GET login | Sentinel\login | Sentinel\SessionController@create |
GET logout | Sentinel\logout | Sentinel\SessionController@destroy |
GET sessions/create | sessions.create | Sentinel\SessionController@create |
POST sessions | sessions.store | Sentinel\SessionController@store |
DELETE sessions/{sessions} | sessions.destroy | Sentinel\SessionController@destroy |
GET register | Sentinel\register | Sentinel\UserController@create |
GET users/{id}/activate/{code} | Sentinel\UserController@activate | |
GET resend | Sentinel\resendActivationForm | Closure |
POST resend | Sentinel\UserController@resend | |
GET forgot | Sentinel\forgotPasswordForm | Closure |
POST forgot | Sentinel\UserController@forgot | |
POST users/{id}/change | Sentinel\UserController@change | |
GET users/{id}/reset/{code} | Sentinel\UserController@reset | |
GET users/{id}/suspend | Sentinel\suspendUserForm | Closure |
POST users/{id}/suspend | Sentinel\UserController@suspend | |
GET users/{id}/unsuspend | Sentinel\UserController@unsuspend | |
GET users/{id}/ban | Sentinel\UserController@ban | |
GET users/{id}/unban | Sentinel\UserController@unban | |
GET users | users.index | Sentinel\UserController@index |
GET users/create | users.create | Sentinel\UserController@create |
POST users | users.store | Sentinel\UserController@store |
POST users/add | users.add | Sentinel\UserController@add |
GET users/{users} | users.show | Sentinel\UserController@show |
GET users/{users}/edit | users.edit | Sentinel\UserController@edit |
PUT users/{users} | users.update | Sentinel\UserController@update |
DELETE users/{users} | users.destroy | Sentinel\UserController@destroy |
GET groups | groups.index | Sentinel\GroupController@index |
GET groups/create | groups.create | Sentinel\GroupController@create |
POST groups | groups.store | Sentinel\GroupController@store |
GET groups/{groups} | groups.show | Sentinel\GroupController@show |
GET groups/{groups}/edit | groups.edit | Sentinel\GroupController@edit |
PUT groups/{groups} | groups.update | Sentinel\GroupController@update |
PATCH groups/{groups} | Sentinel\GroupController@update | |
DELETE groups/{groups} | groups.destroy | Sentinel\GroupController@destroy |
GET / | home | Closure |