35 lines
1.1 KiB
Ruby
35 lines
1.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require "scimitar"
|
|
|
|
# DiscourseScimPlugin::Engine.routes.draw do
|
|
# get "/list" => "scim#index"
|
|
# end
|
|
|
|
# Discourse::Application.routes.draw { mount ::DiscourseScimPlugin::Engine, at: "/scim" }
|
|
Discourse::Application.routes.draw {
|
|
namespace :scim_v2 do
|
|
# DiscourseScimPlugin::Engine.routes.draw do
|
|
# get 'Users', to: 'users#index'
|
|
# get 'Users/:id', to: 'users#show'
|
|
# post 'Users', to: 'users#create'
|
|
# put 'Users/:id', to: 'users#replace'
|
|
# patch 'Users/:id', to: 'users#update'
|
|
# delete 'Users/:id', to: 'users#destroy'
|
|
# end
|
|
|
|
mount Scimitar::Engine, at: '/'
|
|
|
|
get 'Users', to: 'users#index'
|
|
get 'Users/:id', to: 'users#show'
|
|
post 'Users', to: 'users#create'
|
|
put 'Users/:id', to: 'users#replace'
|
|
patch 'Users/:id', to: 'users#update'
|
|
delete 'Users/:id', to: 'users#destroy'
|
|
|
|
get 'Groups', to: 'groups#index'
|
|
get 'Groups/:id', to: 'groups#show'
|
|
post 'Groups', to: 'groups#create'
|
|
patch 'Groups/:id', to: 'groups#update'
|
|
end
|
|
}
|