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

@ -64,7 +64,7 @@ class ImportOtrsController < ApplicationController
# return result
render json: {
result: 'invalid',
result: 'invalid',
message_human: message_human,
}
end

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, {
event: 'ws:login',
data: { success: true },
})
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

View file

@ -35,7 +35,7 @@ class ActivityStreamTest < ActiveSupport::TestCase
created_by_id: current_user.id,
},
article: {
updated_by_id: current_user.id,
updated_by_id: current_user.id,
created_by_id: current_user.id,
type_id: Ticket::Article::Type.lookup( name: 'phone' ).id,
sender_id: Ticket::Article::Sender.lookup( name: 'Customer' ).id,
@ -59,10 +59,10 @@ class ActivityStreamTest < ActiveSupport::TestCase
},
check: [
{
result: true,
result: true,
object: 'Ticket',
type: 'updated',
},
},
{
result: true,
object: 'Ticket::Article',

View file

@ -21,7 +21,7 @@ class HistoryTest < ActiveSupport::TestCase
created_by_id: current_user.id,
},
article: {
updated_by_id: current_user.id,
updated_by_id: current_user.id,
created_by_id: current_user.id,
type_id: Ticket::Article::Type.lookup( name: 'phone' ).id,
sender_id: Ticket::Article::Sender.lookup( name: 'Customer' ).id,
@ -88,7 +88,7 @@ class HistoryTest < ActiveSupport::TestCase
created_by_id: current_user.id,
},
article: {
created_by_id: current_user.id,
created_by_id: current_user.id,
updated_by_id: current_user.id,
type_id: Ticket::Article::Type.lookup(name: 'phone' ).id,
sender_id: Ticket::Article::Sender.lookup(name: 'Customer' ).id,

View file

@ -72,15 +72,15 @@ class OnlineNotificationTest < ActiveSupport::TestCase
},
check: [
{
type: 'create',
type: 'create',
object: 'Ticket',
created_by_id: agent_user1.id,
},
},
{
type: 'update',
type: 'update',
object: 'Ticket',
created_by_id: customer_user.id,
},
},
],
},
@ -123,15 +123,15 @@ class OnlineNotificationTest < ActiveSupport::TestCase
},
check: [
{
type: 'create',
type: 'create',
object: 'Ticket',
created_by_id: agent_user1.id,
},
},
{
type: 'update',
type: 'update',
object: 'Ticket',
created_by_id: customer_user.id,
},
},
],
},
@ -174,15 +174,15 @@ class OnlineNotificationTest < ActiveSupport::TestCase
},
check: [
{
type: 'create',
type: 'create',
object: 'Ticket',
created_by_id: agent_user1.id,
},
},
{
type: 'update',
type: 'update',
object: 'Ticket',
created_by_id: customer_user.id,
},
},
],
},
@ -225,15 +225,15 @@ class OnlineNotificationTest < ActiveSupport::TestCase
},
check: [
{
type: 'create',
type: 'create',
object: 'Ticket',
created_by_id: agent_user1.id,
},
},
{
type: 'update',
type: 'update',
object: 'Ticket',
created_by_id: customer_user.id,
},
},
],
},
]