Added pages and routes for Groups by tag and category

• Added:
- pages and routes for Groups by tag and category
This commit is contained in:
mgabdev
2020-09-14 17:12:45 -05:00
parent cb30e0dcbf
commit fafd1ef658
10 changed files with 355 additions and 5 deletions

View File

@@ -437,6 +437,9 @@ Rails.application.routes.draw do
post '/statuses/:status_id/approve', to: 'groups#approve_status'
end
get '/category/:category', to: 'groups#by_category'
get '/tag/:tag', to: 'groups#by_tag'
resources :relationships, only: :index, controller: 'groups/relationships'
resource :accounts, only: [:show, :create, :update, :destroy], controller: 'groups/accounts'
resource :removed_accounts, only: [:show, :create, :destroy], controller: 'groups/removed_accounts'