Created
November 10, 2015 08:11
-
-
Save YumaInaura/8f34b2d89bf9c51910c6 to your computer and use it in GitHub Desktop.
ActiveAdmin でデータベースと関連しないフォームを作成する方法 ref: http://qiita.com/Yinaura/items/658b1d7b6009261da8f8
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Book < ActiveRecord::Base | |
attr_accessor :message | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ActiveAdmin.register Book do | |
form do |f| | |
f.inputs do | |
f.input :title | |
f.input :message | |
end | |
f.actions | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment