compatibility with new cmtool version

This commit is contained in:
2015-07-16 18:55:48 +02:00
parent 544e0b019a
commit 69ff935c9e
5 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ private
when Page then record.name when Page then record.name
else record else record
end end
main_app.go_to_path(str, locale: locale) main_app.page_path(str, locale: locale)
end end
helper_method :go_to_page_path helper_method :go_to_page_path
#END CMTOOL #END CMTOOL
+1 -1
View File
@@ -5,7 +5,7 @@ class ContactFormsController < ApplicationController
Notifier.contact_form(@contact_form.id).deliver_later Notifier.contact_form(@contact_form.id).deliver_later
redirect_to root_path, notice: t('contact_form.submitted') redirect_to root_path, notice: t('contact_form.submitted')
else else
redirect_to go_to_path('contact', locale: I18n.locale), alert: @contact_form.errors.full_messages.join(', ') redirect_to page_path('contact', locale: I18n.locale), alert: @contact_form.errors.full_messages.join(', ')
end end
end end
+3 -3
View File
@@ -5,10 +5,10 @@
.fb-like data-href="http://mozo.bar/" data-layout="button" data-action="like" data-show-faces="true" data-share="true" .fb-like data-href="http://mozo.bar/" data-layout="button" data-action="like" data-show-faces="true" data-share="true"
= link_to t('devise.registrations.link'), main_app.new_suppliers_path, class: 'signup-button' = link_to t('devise.registrations.link'), main_app.new_suppliers_path, class: 'signup-button'
= yield :footer = yield :footer
/= link_to 'disclaimer', go_to_path('disclaimer', locale: 'en') /= link_to 'disclaimer', page_path('disclaimer', locale: 'en')
/' /'
= link_to 'privacy', main_app.go_to_path('privacy', locale: 'en') = link_to 'privacy', main_app.page_path('privacy', locale: 'en')
' '
= link_to 'contact', main_app.go_to_path('contact', locale: 'en') = link_to 'contact', main_app.page_path('contact', locale: 'en')
.clearfix .clearfix
.footer-bottom &copy; mozo.bar 2015 .footer-bottom &copy; mozo.bar 2015
+1 -1
View File
@@ -103,7 +103,7 @@ module Qwaiter
end end
config.handlebars.templates_root = %w[supplier/app/templates waiter/app/templates user/app/templates] if defined?(Ember::Rails) && defined?(Handlebars) #config.handlebars.templates_root = %w[supplier/app/templates waiter/app/templates user/app/templates] if defined?(Ember::Rails) && defined?(Handlebars)
config.generators do |g| config.generators do |g|
g.orm :simply_stored g.orm :simply_stored
+1 -1
View File
@@ -190,6 +190,6 @@ Qwaiter::Application.routes.draw do
root to: 'pages#home' root to: 'pages#home'
resources :contact_forms, only: [:create] resources :contact_forms, only: [:create]
resources :new_suppliers resources :new_suppliers
get "/:name" => "pages#show", constraints: {name: /.*/}, as: :go_to get "/:name" => "pages#show", constraints: {name: /.*/}, as: :page
end end
end end