about summary refs log tree commit diff stats
path: root/data/maps/the_unyielding/rooms/Behind Northeast.txtpb
Commit message (Expand)AuthorAgeFilesLines
* Added the_unyieldingStar Rauchenberger2025-08-211-0/+8
34'>34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
class Admin::BlogsController < Admin::AdminController
  before_action :set_section

  def index
    @blogs = Blog.where(published: true).order(published_at: :desc)
  end

  def drafts
    @blogs = Blog.where(published: false).order(updated_at: :desc)
  end

  def show
    @blog = Blog.find(params[:id])

    if @blog.published
      redirect_to @blog
    else
      render layout: "application"
    end
  end

  def new
    @blog = Blog.new
  end

  def create
    @blog = Blog.new(blog_params)
    @blog.user = current_user

    if @blog.save
      flash.notice = "Blog created successfully!"

      render :edit
    else
      flash.alert = "Error creating blog."

      render :new
    end
  end

  def edit
    @blog = Blog.find(params[:id])
  end

  def update
    @blog = Blog.find(params[:id])

    if @blog.update(blog_params)
      flash.notice = "Blog updated successfully!"
    else
      flash.alert = "Error updating blog."
    end

    render :edit
  end

  private

    def blog_params
      params.require(:blog).permit(:title, :body, :slug, :published, :published_at, :tag_list, images: [], records_attributes: [:description, :_destroy])
    end

    def set_section
      @section = "blogs"
    end

end