Files
danbooru/app/helpers/moderator/invitations_helper.rb
2013-04-28 00:04:52 -07:00

11 lines
251 B
Ruby

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