forum: add more min_levels options.

This commit is contained in:
evazion
2022-10-05 01:32:57 -05:00
parent b4a67331ce
commit 528d03a60b

View File

@@ -9,6 +9,9 @@ class ForumTopic < ApplicationRecord
MIN_LEVELS = {
None: 0,
Member: User::Levels::MEMBER,
Gold: User::Levels::GOLD,
Builder: User::Levels::BUILDER,
Moderator: User::Levels::MODERATOR,
Admin: User::Levels::ADMIN,
}