user.rb 2.2 KB

1234567891011121314151617181920212223242526272829303132
  1. Zammad::Application.routes.draw do
  2. api_path = Rails.configuration.api_path
  3. # users
  4. match api_path + '/users/search', to: 'users#search', via: %i[get post]
  5. match api_path + '/users/recent', to: 'users#recent', via: %i[get post]
  6. match api_path + '/users/password_reset', to: 'users#password_reset_send', via: :post
  7. match api_path + '/users/password_reset_verify', to: 'users#password_reset_verify', via: :post
  8. match api_path + '/users/password_change', to: 'users#password_change', via: :post
  9. match api_path + '/users/preferences', to: 'users#preferences', via: :put
  10. match api_path + '/users/out_of_office', to: 'users#out_of_office', via: :put
  11. match api_path + '/users/account', to: 'users#account_remove', via: :delete
  12. match api_path + '/users/avatar', to: 'users#avatar_new', via: :post
  13. match api_path + '/users/avatar', to: 'users#avatar_list', via: :get
  14. match api_path + '/users/avatar', to: 'users#avatar_destroy', via: :delete
  15. match api_path + '/users/avatar/set', to: 'users#avatar_set_default', via: :post
  16. match api_path + '/users/me', to: 'users#me', via: :get
  17. match api_path + '/users', to: 'users#index', via: :get
  18. match api_path + '/users/:id', to: 'users#show', via: :get
  19. match api_path + '/users/history/:id', to: 'users#history', via: :get
  20. match api_path + '/users', to: 'users#create', via: :post
  21. match api_path + '/users/:id', to: 'users#update', via: :put
  22. match api_path + '/users/:id', to: 'users#destroy', via: :delete
  23. match api_path + '/users/image/:hash', to: 'users#image', via: :get
  24. match api_path + '/users/email_verify', to: 'users#email_verify', via: :post
  25. match api_path + '/users/email_verify_send', to: 'users#email_verify_send', via: :post
  26. end