mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-26 15:54:34 +08:00
15 lines
281 B
Ruby
Vendored
15 lines
281 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
module DiscoursePoll
|
|
DATA_PREFIX = "data-poll-"
|
|
HAS_POLLS = "has_polls"
|
|
DEFAULT_POLL_NAME = "poll"
|
|
|
|
class Engine < ::Rails::Engine
|
|
engine_name PLUGIN_NAME
|
|
isolate_namespace DiscoursePoll
|
|
end
|
|
|
|
class Error < StandardError
|
|
end
|
|
end
|