Files
astuto/app/controllers/site_settings_controller.rb
Riccardo Graziosi 4c73b398e8 Add OAuth2 authentication (#147)
- Added Site settings > Authentication section
- Create/edit/delete your custom oauth2 configurations
- Login or signup with oauth2
2022-08-05 18:15:17 +02:00

27 lines
395 B
Ruby

class SiteSettingsController < ApplicationController
include ApplicationHelper
before_action :authenticate_admin,
only: [:general, :boards, :post_statuses, :roadmap, :authentication]
before_action :authenticate_power_user,
only: [:users]
def general
end
def boards
end
def post_statuses
end
def roadmap
end
def users
end
def authentication
end
end