Sha256: 3517b5c133f89ea225751b02e71537c8b92016a2675fcde84b39c75a06651955
Contents?: true
Size: 1.04 KB
Versions: 6
Compression:
Stored size: 1.04 KB
Contents
require_dependency "notee/application_controller" module Notee class ImagesController < ApplicationController def index @images = Image.all render json: { status: 'success', images: @images} end def create @image = Image.new @image.file = params[:image] respond_to do |format| if @image.save format.json { render json: @image, status: 200 } else format.json { render json: @image.errors, status: :unprocessable_entity } end end end def destroy return unless @del_img = Image.find_by(content: params[:name]) respond_to do |format| if @del_img.destroy format.json { render json: @del_img, status: 200 } else format.json { render json: @del_img.errors, status: :internal_server_error } end end end private def image_params params.require(:image).permit(:title, :content, :slug, :status, :image_id, :thumbnail_id, :published_at, :seo_keyword, :seo_description) end end end
Version data entries
6 entries across 6 versions & 1 rubygems