You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
217 B
12 lines
217 B
1 year ago
|
# frozen_string_literal: true
|
||
|
|
||
|
module InvitesHelper
|
||
|
def invites_max_uses_options
|
||
|
[1, 5, 10, 25, 50, 100]
|
||
|
end
|
||
|
|
||
|
def invites_expires_options
|
||
|
[30.minutes, 1.hour, 6.hours, 12.hours, 1.day, 1.week]
|
||
|
end
|
||
|
end
|