You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After I've uploaded an image through the editor I can select and insert it again into the same or into another post from the choose image menu. But how can I delete an image for example from an admin interface like Active Admin? Or from the image list pop-up window as a regular user?
The text was updated successfully, but these errors were encountered:
Redactor itself does not provide means to upload and manage pictures or files. Rather, Redactor provides interfaces and requires to implement a handler that handles the selected files for upload. The redactor-rails Gem provides such uploader via CarrierWave gem.
I would recommend to override the two controllers, PictureController and DocumentController, that are provided by the gem and implement the required show and destroy actions. Alternatively, an own controller could be designed and implemented which handles the records for the Redactor assets. Check the schema.rb file for redactor_assets table.
After I've uploaded an image through the editor I can select and insert it again into the same or into another post from the choose image menu. But how can I delete an image for example from an admin interface like Active Admin? Or from the image list pop-up window as a regular user?
The text was updated successfully, but these errors were encountered: