First version of blocking feature. Allows both time-based (for map protection) and notice-based (for education) blocks on users. Also introduces user roles and a simple UI for displaying and administering these.
This commit is contained in:
parent
52fa09ecae
commit
daa2496024
33 changed files with 766 additions and 23 deletions
|
@ -1,5 +1,4 @@
|
|||
ActionController::Routing::Routes.draw do |map|
|
||||
|
||||
# API
|
||||
map.connect "api/capabilities", :controller => 'api', :action => 'capabilities'
|
||||
map.connect "api/#{API_VERSION}/capabilities", :controller => 'api', :action => 'capabilities'
|
||||
|
@ -202,6 +201,14 @@ ActionController::Routing::Routes.draw do |map|
|
|||
map.access_token '/oauth/access_token', :controller => 'oauth', :action => 'access_token'
|
||||
map.test_request '/oauth/test_request', :controller => 'oauth', :action => 'test_request'
|
||||
|
||||
# roles and banning pages
|
||||
map.connect '/user/:display_name/role/:role/grant', :controller => 'user_roles', :action => 'grant'
|
||||
map.connect '/user/:display_name/role/:role/revoke', :controller => 'user_roles', :action => 'revoke'
|
||||
map.connect '/user/:display_name/blocks', :controller => 'user_blocks', :action => 'blocks_on'
|
||||
map.connect '/user/:display_name/blocks_by', :controller => 'user_blocks', :action => 'blocks_by'
|
||||
map.resources :user_blocks, :as => 'blocks'
|
||||
map.connect '/blocks/:id/revoke', :controller => 'user_blocks', :action => 'revoke'
|
||||
|
||||
# fall through
|
||||
map.connect ':controller/:id/:action'
|
||||
map.connect ':controller/:action'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue