23 lines
357 B
Ruby
23 lines
357 B
Ruby
# frozen_string_literal: true
|
|
|
|
get '/supporter/?' do
|
|
@title = 'Supporter'
|
|
erb :'welcome'
|
|
end
|
|
|
|
post '/supporter/update' do
|
|
require_login
|
|
|
|
#SUPPORTER FOR EVERYONEEEEEEE.
|
|
redirect '/supporter/thanks'
|
|
end
|
|
|
|
get '/supporter/thanks' do
|
|
@title = 'Supporter Confirmation'
|
|
require_login
|
|
erb :'supporter/thanks'
|
|
end
|
|
|
|
def is_special_upgrade
|
|
false
|
|
end
|