group.rb 675 B

1234567891011121314
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. Zammad::Application.routes.draw do
  3. api_path = Rails.configuration.api_path
  4. # groups
  5. match api_path + '/groups', to: 'groups#index', via: :get
  6. match api_path + '/groups/search', to: 'groups#search', via: %i[get post]
  7. match api_path + '/groups/:id', to: 'groups#show', via: :get
  8. match api_path + '/groups', to: 'groups#create', via: :post
  9. match api_path + '/groups/:id', to: 'groups#update', via: :put
  10. match api_path + '/groups/:id', to: 'groups#destroy', via: :delete
  11. end