You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- class Admins::OrganizationsController < Admins::BaseController
- before_action :finder_org, except: [:index]
-
- def index
- @orgs = paginate Organization.all
- end
-
- def show
- end
-
- def destroy
- @org.destroy!
- Admins::DeleteOrganizationService.call(@org.login)
- render_delete_success
- end
-
- private
-
- def finder_org
- @org = Organization.find(params[:id])
- end
-
- end
|