questionmark syntax
This commit is contained in:
parent
5c7842f37d
commit
8926bd6c05
1 changed files with 2 additions and 2 deletions
4
app.rb
4
app.rb
|
@ -31,8 +31,8 @@ post '/' do
|
|||
end
|
||||
end
|
||||
|
||||
get '/bossfight/?:username' do
|
||||
@username = params['username'] != '' ? params['username'] : 'mafiaman'
|
||||
get '/bossfight' do
|
||||
@username = params['username'] ? params['username'] : 'mafiaman'
|
||||
user_raids = Raid.for_user(@username)
|
||||
@first_negative = user_raids.first_negative
|
||||
@soldiers_killed = user_raids.soldiers_lost_to_date(@first_negative.created_at)
|
||||
|
|
Loading…
Reference in a new issue