diff --git a/app/controllers/calentries_controller.rb b/app/controllers/calentries_controller.rb index 4997153..6a797e1 100644 --- a/app/controllers/calentries_controller.rb +++ b/app/controllers/calentries_controller.rb @@ -7,7 +7,6 @@ class CalentriesController < ApplicationController respond_to do |format| format.html {redirect_to rubriken_path} - format.ics end end diff --git a/app/helpers/neuigkeiten_helper.rb b/app/helpers/neuigkeiten_helper.rb index 545ebc9..6373dae 100755 --- a/app/helpers/neuigkeiten_helper.rb +++ b/app/helpers/neuigkeiten_helper.rb @@ -1,2 +1,5 @@ module NeuigkeitenHelper # :nodoc: + def send_daily_newsletter(user) + + end end diff --git a/app/mailers/news_mailer.rb b/app/mailers/news_mailer.rb index 4bcd19e..f338c29 100644 --- a/app/mailers/news_mailer.rb +++ b/app/mailers/news_mailer.rb @@ -5,4 +5,7 @@ class NewsMailer < ActionMailer::Base mail(to: email, subject: @neuigkeit.title) end + def daily_newsletter(user_id) + + end end