Sha256: 489b7f7c49924673d4dc51902c4c9677069d574e95fdfeb4fcddc4828c00da7e

Contents?: true

Size: 1.1 KB

Versions: 5

Compression:

Stored size: 1.1 KB

Contents

module ActiveScaffold::Actions
  module Subform
    def edit_associated
      do_edit_associated
      render :action => 'edit_associated', :formats => [:js], :readonly => @column.association.options[:readonly]
    end

    protected

    def do_edit_associated
      @parent_record = params[:id].nil? ? new_model : find_if_allowed(params[:id], :update)
      if @parent_record.new_record?
        apply_constraints_to_record @parent_record
        create_association_with_parent @parent_record if nested?
      end

      generate_temporary_id(@parent_record, params[:generated_id]) if @parent_record.new_record? && params[:generated_id]
      @column = active_scaffold_config.columns[params[:child_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.association, @parent_record)
      @scope = params[:scope]
    end

  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
active_scaffold-3.4.12 lib/active_scaffold/actions/subform.rb
active_scaffold-3.4.11 lib/active_scaffold/actions/subform.rb
active_scaffold-3.4.10 lib/active_scaffold/actions/subform.rb
active_scaffold-3.4.9 lib/active_scaffold/actions/subform.rb
active_scaffold-3.4.8 lib/active_scaffold/actions/subform.rb