diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2021-02-21 19:50:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-21 19:50:12 +0100 |
commit | 8331fdf7e0ea85ecc6d7dbff00b784bb6aa1f7d4 (patch) | |
tree | 044e1475cb6e31c5c33d02a4220c95f080667c59 /app/controllers/api | |
parent | dcc7c686f3c4c85ebb8a3e6d5a861fc530c1840d (diff) |
Add server rules (#15769)
Diffstat (limited to 'app/controllers/api')
-rw-r--r-- | app/controllers/api/v1/instances/rules_controller.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/app/controllers/api/v1/instances/rules_controller.rb b/app/controllers/api/v1/instances/rules_controller.rb new file mode 100644 index 000000000..93cf3c759 --- /dev/null +++ b/app/controllers/api/v1/instances/rules_controller.rb @@ -0,0 +1,17 @@ +# frozen_string_literal: true + +class Api::V1::Instances::RulesController < Api::BaseController + skip_before_action :require_authenticated_user!, unless: :whitelist_mode? + + before_action :set_rules + + def index + render json: @rules, each_serializer: REST::RuleSerializer + end + + private + + def set_rules + @rules = Rule.ordered + end +end |