Corrected with rubocop cop 'Style/MethodName'.

This commit is contained in:
Thorsten Eckel 2015-05-05 12:51:19 +02:00
parent b1d8fb1434
commit abe329591e
4 changed files with 6 additions and 8 deletions

View file

@ -271,7 +271,5 @@ Lint/Eval:
Enabled: false
Rails/HasAndBelongsToMany:
Enabled: false
Style/MethodName:
Enabled: false
Style/ModuleFunction:
Enabled: false

View file

@ -7,7 +7,7 @@ class ObjectManagerAttributesController < ApplicationController
def list
return if deny_if_not_role(Z_ROLENAME_ADMIN)
render json: {
objects: ObjectManager.listFrontendObjects,
objects: ObjectManager.list_frontend_objects,
}
#model_index_render(ObjectManager::Attribute, params)
end

View file

@ -6,11 +6,11 @@ class ObjectManager
list all backend managed object
ObjectManager.listObjects()
ObjectManager.list_objects()
=end
def self.listObjects
def self.list_objects
['Ticket', 'TicketArticle', 'User', 'Organization', 'Group' ]
end
@ -18,11 +18,11 @@ list all backend managed object
list all frontend managed object
ObjectManager.listFrontendObjects()
ObjectManager.list_frontend_objects()
=end
def self.listFrontendObjects
def self.list_frontend_objects
['Ticket', 'User', 'Organization' ] #, 'Group' ]
end

View file

@ -18,7 +18,7 @@ module SessionHelper
def self.models(user = nil)
models = {}
objects = ObjectManager.listObjects
objects = ObjectManager.list_objects
objects.each {|object|
attributes = ObjectManager::Attribute.by_object(object, user)
models[object] = attributes