discourse/plugins/styleguide/app/controllers/styleguide/styleguide_controller.rb
Martin Brennan a03f87bdbd
DEV: Move core plugin TL -> group settings (#25355)
* DEV: Change poll_minimum_trust_level_to_create to group based setting

New setting is poll_create_allowed_groups

c.f. https://meta.discourse.org/t/changes-coming-to-settings-for-giving-access-to-features-from-trust-levels-to-groups/283408

* DEV: Move styleguide_admin_only to group based setting

Not exactly a TL -> group change, but still part of the
overall effort here:

https://meta.discourse.org/t/changes-coming-to-settings-for-giving-access-to-features-from-trust-levels-to-groups/283408

New setting is styleguide_allowed_groups
2024-01-23 11:35:14 +10:00

17 lines
394 B
Ruby

# frozen_string_literal: true
module Styleguide
class StyleguideController < ApplicationController
requires_plugin Styleguide::PLUGIN_NAME
skip_before_action :check_xhr
def index
if !current_user || !current_user.in_any_groups?(SiteSetting.styleguide_allowed_groups_map)
raise Discourse::InvalidAccess.new
end
render "default/empty"
end
end
end