开发者

Rails 3 Active Admin add preset value to new record

开发者 https://www.devze.com 2023-04-07 23:09 出处:网络
I have tried to do it from the controller and from the active admin override controller and I can\'t make it work.

I have tried to do it from the controller and from the active admin override controller and I can't make it work.

A user creates a website. current_user has an id a开发者_C百科ttribute website has an user_id attribute

So when I create a new website I want to add the current_user.id into website.user_id. I can't.

Anybody know how?

Right now I need it on the new/create actions but I'll probably need this on the edit/update actions too.


This seems to work for me:

ActiveAdmin.register Website do

  controller do
    # Do some custom stuff on GET /admin/websites/*/edit
    def edit
      super do |format|
        # Do what you want here ...
        @website.user = current_user
      end
    end
  end

end

You should be able to override other controller actions in the same way.


ActiveAdmin.register Model do

  # also look in to before_create if hidden on form
  before_build do |record|
    record.user = current_user
  end

end

See https://github.com/activeadmin/activeadmin/blob/master/lib/active_admin/resource_dsl.rb#L156


You need to add a 'new' method to the controller. The 'new' method creates an empty website object that will be passed to the form. The default 'new' method just creates an empty @website object. Your 'new' method should create the empty object, and then initialize the value of user to current user:

  ActiveAdmin.register Website do

  controller do
    # Custom new method
    def new
      @website = Website.new
      @website.user = current_user
      #set any other values you might want to initialize
    end
  end
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号