mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-15 01:00:01 +08:00
11 lines
296 B
Ruby
11 lines
296 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ::PostVoting
|
|
CREATE_AS_POST_VOTING_DEFAULT = "create_as_post_voting_default"
|
|
ONLY_POST_VOTING_IN_THIS_CATEGORY = "only_post_voting_in_this_category"
|
|
|
|
class Engine < Rails::Engine
|
|
engine_name "post_voting"
|
|
isolate_namespace PostVoting
|
|
end
|
|
end
|