We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
This concern is used to make the 'gallery' (or files) of an instantce orderable (you'll be able to order them when viewing a member [show action]).
We'll take Adminpanel::Post as an example implementation.
Adminpanel::Post
Given that your Adminpanel::Post alredy have mounted gallery (with mount_images :postfiles)
mount_images :postfiles
In adminpanel/postfile.rb define:
adminpanel/postfile.rb
belongs_to :post def self.relation_field 'post_id' #this is the parent model reference end def self.display_name 'postfiles' end
After that, you'll have to:
adminpanel/postfiles_controller.rb
position
postfile.rb
include Adminpanel::SortableGallery
With this, you are free to call @post.postfiles.ordered and are going to be scoped by position
@post.postfiles.ordered
There was an error while loading. Please reload this page.