Applied rubocop Style/IndentHash.

This commit is contained in:
Martin Edenhofer 2015-04-27 17:21:17 +02:00
parent c79c73d009
commit 158bf737ae
12 changed files with 47 additions and 44 deletions

View file

@ -207,11 +207,11 @@ class Package < ApplicationModel
end
# uninstall files of old package
self.uninstall({
self.uninstall(
name: package_db.name,
version: package_db.version,
migration_not_down: true,
})
)
end
# store package

View file

@ -42,10 +42,13 @@ returns
# send update to browser
if session && session['id']
self.send( client_id, {
self.send(
client_id,
{
event: 'ws:login',
data: { success: true },
})
}
)
end
end

View file

@ -54,11 +54,11 @@ class Sessions::Backend::ActivityStream
end
@client.log 'notify', "push activity_stream #{ data.first.class.to_s } for user #{ @user.id }"
@client.send({
@client.send(
event: 'activity_stream_rebuild',
collection: 'activity_stream',
data: data,
})
)
end
end

View file

@ -74,18 +74,18 @@ class Sessions::Backend::Collections::Base
}
end
@client.log 'notify', "push assets for push_collection #{ items.first.class.to_s } for user #{ @user.id }"
@client.send({
@client.send(
data: assets,
event: [ 'loadAssets' ],
})
)
@client.log 'notify', "push push_collection #{ items.first.class.to_s } for user #{ @user.id }"
@client.send({
@client.send(
event: 'resetCollection',
data: {
items.first.class.to_app_model => all,
},
})
)
end
def self.model_set(model)

View file

@ -54,11 +54,11 @@ class Sessions::Backend::Rss
end
@client.log 'notify', "push rss for user #{@user.id}"
@client.send({
@client.send(
event: 'rss_rebuild',
collection: 'dashboard_rss',
data: data,
})
)
end
end

View file

@ -59,10 +59,10 @@ class Sessions::Backend::TicketCreate
end
@client.log 'notify', "push ticket_create for user #{ @user.id }"
@client.send({
@client.send(
collection: 'ticket_create_attributes',
data: data,
})
)
end
end

View file

@ -57,10 +57,10 @@ class Sessions::Backend::TicketOverviewIndex
end
@client.log 'notify', "push overview_index for user #{ @user.id }"
@client.send({
@client.send(
event: ['ticket_overview_index'],
data: data,
})
)
end
end

View file

@ -106,11 +106,11 @@ class Sessions::Backend::TicketOverviewList
@client.log 'notify', "push overview_list for user #{ @user.id }"
# send update to browser
@client.send({
@client.send(
data: assets,
event: [ 'loadAssets' ]
})
@client.send({
)
@client.send(
data: {
view: item[:index].link.to_s,
overview: overview_data[:overview],
@ -122,7 +122,7 @@ class Sessions::Backend::TicketOverviewList
},
},
event: [ 'ticket_overview_rebuild' ],
})
)
end
}
return results if !@client