Sha256: ac42f2760363fb6833693e3e330b35aba20b360521b14a3dc62a7613a289fe18
Contents?: true
Size: 818 Bytes
Versions: 2
Compression:
Stored size: 818 Bytes
Contents
module Typus module Controller module ActsAsList def self.included(base) base.before_filter :get_object, :only => [:position] base.before_filter :check_resource_ownership, :only => [:position] end ## # This module is designed to work with `acts_as_list`. # # Available positions are: # # - move_to_top # - move_higher # - move_lower # - move_to_bottom # def position if %w(move_to_top move_higher move_lower move_to_bottom).include?(params[:go]) @item.send(params[:go]) notice = Typus::I18n.t("%{model} successfully updated.", :model => @resource.model_name.human) redirect_to :back, :notice => notice else not_allowed end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
typus-3.1.6 | lib/typus/controller/acts_as_list.rb |
typus-3.1.5 | lib/typus/controller/acts_as_list.rb |