Files
danbooru/app/helpers/moderator/invitations_helper.rb
r888888888 6480864718 fixes #2469
2015-10-15 15:24:24 -07:00

11 lines
245 B
Ruby

module Moderator
module InvitationsHelper
def level_select
choices = []
choices << ["Gold", User::Levels::GOLD]
choices << ["Platinum", User::Levels::PLATINUM]
select(:invitation, :level, choices)
end
end
end