8000 GitHub - udacity/activeadmin_json_editor at 90d45965e5431112740ebf3da5729c6d3fcccf8e
[go: up one dir, main page]

Skip to content

udacity/activeadmin_json_editor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ActiveAdmin::HstoreEditor

"hstore_input" field type to active_admin that allow to edit Postgresql hstore values as json tree. Data shown by using jsoneditor.js from http://jsoneditoronline.org

Installation

Add this line to your application's Gemfile:

gem 'activeadmin_hstore_editor'

And then execute:

$ bundle

Or install it yourself as:

$ gem install activeadmin_hstore_editor

Usage

This Gem provides you formtastic input called :hstore to edit hstore data and parse form data for store it

ActiveAdmin.register User do
	permit_params :settings

	hstore_editor

  # specify the type does not necessarily
	form do |f|
    f.inputs do
      f.input :settings, as: :hstore
    end

    f.actions
  end
end

Contributing

  1. Fork it ( http://github.com/wild-ex/activeadmin_hstore_editor/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

About

Edit Postgresql JSON/JSONB values as a JSON tree in ActiveAdmin

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 63.0%
  • CSS 20.1%
  • JavaScript 16.9%
0