mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-24 20:20:16 +08:00
11 lines
224 B
Ruby
Vendored
11 lines
224 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
module DiscoursePolicy
|
|
HAS_POLICY = "HasPolicy"
|
|
POLICY_USER_DEFAULT_LIMIT = 25
|
|
|
|
class Engine < ::Rails::Engine
|
|
engine_name PLUGIN_NAME
|
|
isolate_namespace DiscoursePolicy
|
|
end
|
|
end
|