diff options
author | azul <azul@riseup.net> | 2013-07-11 00:37:45 -0700 |
---|---|---|
committer | azul <azul@riseup.net> | 2013-07-11 00:37:45 -0700 |
commit | 02b69c78eed7682c24cb8361da094bdac45a7749 (patch) | |
tree | a45ed7076a96ddb1601cf9a2e44ae37160f90319 /users/config | |
parent | 3113f8b814417a896ad5340fda88927733f8ab22 (diff) | |
parent | a40a83cb07d9aba8915cd2c4a25aa76e0cf6760e (diff) |
Merge pull request #56 from leapcode/feature/disable_account
Feature/disable account
Diffstat (limited to 'users/config')
-rw-r--r-- | users/config/locales/en.yml | 7 | ||||
-rw-r--r-- | users/config/routes.rb | 2 |
2 files changed, 9 insertions, 0 deletions
diff --git a/users/config/locales/en.yml b/users/config/locales/en.yml index b880887..1aa7005 100644 --- a/users/config/locales/en.yml +++ b/users/config/locales/en.yml @@ -30,6 +30,13 @@ en: not_authorized: "Sorry, but you are not authorized to perform that action." not_authorized_login: "Please log in to perform that action." search: "Search" + cookie_disabled_warning: "You have cookies disabled. You will not be able to login until you enable cookies." + js_required: "We are sorry, but this doesn't work without javascript enabled. This is for security reasons." + enable_account: "Enable the account %{username}" + enable_description: "This will restore the account to full functionality" + deactivate_account: "Deactivate the account %{username}" + deactivate_description: "This will temporarily deactivate some account functionality." #todo detail exact functionality. can receive email but not send or renew client certificate? + # # overview diff --git a/users/config/routes.rb b/users/config/routes.rb index b6d583e..4fa185f 100644 --- a/users/config/routes.rb +++ b/users/config/routes.rb @@ -17,6 +17,8 @@ Rails.application.routes.draw do resource :overview, :only => [:show] resource :email_settings, :only => [:edit, :update] resources :email_aliases, :only => [:destroy], :id => /.*/ + post 'deactivate', on: :member + post 'enable', on: :member end get "/.well-known/host-meta" => 'webfinger#host_meta' |