foodsoft/app/controllers/article_categories_controll...

16 lines
381 B
Ruby
Raw Normal View History

class ArticleCategoriesController < ApplicationController
2011-05-18 16:10:30 +02:00
inherit_resources # Build default REST Actions via plugin
2011-05-18 16:10:30 +02:00
before_filter :authenticate_article_meta
def create
2011-05-18 16:10:30 +02:00
create!(:notice => "Die Kategorie wurde gespeichert") { article_categories_path }
end
def update
2011-05-18 16:10:30 +02:00
update!(:notice => "Die Kategorie wurde aktualisiert") { article_categories_path }
end
end