Simplify the code

This commit is contained in:
Lin Jen-Shin 2016-09-01 02:15:43 +08:00
parent 1bd2327c31
commit f5c9a40989

View file

@ -26,14 +26,10 @@ class Admin::ServicesController < Admin::ApplicationController
private
def services_templates
templates = []
Service.available_services_names.each do |service_name|
Service.available_services_names.map do |service_name|
service_template = service_name.concat("_service").camelize.constantize
templates << service_template.where(template: true).first_or_create
service_template.where(template: true).first_or_create
end
templates
end
def service