Skip to content

Commit

Permalink
Tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
lewispb committed Feb 21, 2022
1 parent a9217ef commit b1abf9e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 73 deletions.
66 changes: 0 additions & 66 deletions app/controllers/posts_controller.rb
Original file line number Diff line number Diff line change
@@ -1,70 +1,4 @@
class PostsController < ApplicationController
before_action :set_post, only: %i[ show edit update destroy ]

# GET /posts or /posts.json
def index
@posts = Post.all
end

# GET /posts/1 or /posts/1.json
def show
end

# GET /posts/new
def new
@post = Post.new
end

# GET /posts/1/edit
def edit
end

# POST /posts or /posts.json
def create
@post = Post.new(post_params)

respond_to do |format|
if @post.save
format.html { redirect_to post_url(@post), notice: "Post was successfully created." }
format.json { render :show, status: :created, location: @post }
else
format.html { render :new, status: :unprocessable_entity }
format.json { render json: @post.errors, status: :unprocessable_entity }
end
end
end

# PATCH/PUT /posts/1 or /posts/1.json
def update
respond_to do |format|
if @post.update(post_params)
format.html { redirect_to post_url(@post), notice: "Post was successfully updated." }
format.json { render :show, status: :ok, location: @post }
else
format.html { render :edit, status: :unprocessable_entity }
format.json { render json: @post.errors, status: :unprocessable_entity }
end
end
end

# DELETE /posts/1 or /posts/1.json
def destroy
@post.destroy

respond_to do |format|
format.html { redirect_to posts_url, notice: "Post was successfully destroyed." }
format.json { head :no_content }
end
end

private
# Use callbacks to share common setup or constraints between actions.
def set_post
@post = Post.find(params[:id])
end

# Only allow a list of trusted parameters through.
def post_params
params.require(:post).permit(:title)
end
end
7 changes: 0 additions & 7 deletions app/javascript/controllers/hello_controller.js

This file was deleted.

0 comments on commit b1abf9e

Please sign in to comment.