Sha256: 897f2a9ff24609a94c0118f6d7365222b45d46d8932e4204fe7a6eb7f1c920a7

Contents?: true

Size: 904 Bytes

Versions: 10

Compression:

Stored size: 904 Bytes

Contents

module ActiveScaffold::Actions
  module Subform
    def edit_associated
      do_edit_associated
      render :action => 'edit_associated', :formats => [:js]
    end

    protected

    def do_edit_associated
      @parent_record = params[:id].nil? ? new_model : find_if_allowed(params[:id], :update)
      @column = active_scaffold_config.columns[params[:association]]

      # NOTE: we don't check whether the user is allowed to update this record, because if not, we'll still let them associate the record. we'll just refuse to do more than associate, is all.
      @record = @column.association.klass.find(params[:associated_id]) if params[:associated_id]
      @record ||= build_associated(@column, @parent_record)

      @scope = "[#{@column.name}]"
      @scope += (@record.new_record?) ? "[#{(Time.now.to_f*1000).to_i.to_s}]" : "[#{@record.id}]" if @column.plural_association?
    end

  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
active_scaffold-3.2.11 lib/active_scaffold/actions/subform.rb
active_scaffold-3.2.10 lib/active_scaffold/actions/subform.rb
active_scaffold-3.2.9 lib/active_scaffold/actions/subform.rb
active_scaffold-3.2.8 lib/active_scaffold/actions/subform.rb
active_scaffold-3.2.7 lib/active_scaffold/actions/subform.rb
active_scaffold-3.2.6 lib/active_scaffold/actions/subform.rb
active_scaffold-3.2.5 lib/active_scaffold/actions/subform.rb
active_scaffold-3.2.4 lib/active_scaffold/actions/subform.rb
active_scaffold-3.2.3 lib/active_scaffold/actions/subform.rb
active_scaffold-3.2.2 lib/active_scaffold/actions/subform.rb