adding stories, scaffold
This commit is contained in:
58
app/controllers/stories_controller.rb
Normal file
58
app/controllers/stories_controller.rb
Normal file
@ -0,0 +1,58 @@
|
||||
class StoriesController < ApplicationController
|
||||
before_action :set_story, only: %i[ show edit update destroy ]
|
||||
|
||||
# GET /stories
|
||||
def index
|
||||
@stories = Story.all
|
||||
end
|
||||
|
||||
# GET /stories/1
|
||||
def show
|
||||
end
|
||||
|
||||
# GET /stories/new
|
||||
def new
|
||||
@story = Story.new
|
||||
end
|
||||
|
||||
# GET /stories/1/edit
|
||||
def edit
|
||||
end
|
||||
|
||||
# POST /stories
|
||||
def create
|
||||
@story = Story.new(story_params)
|
||||
|
||||
if @story.save
|
||||
redirect_to @story, notice: "Story was successfully created."
|
||||
else
|
||||
render :new, status: :unprocessable_entity
|
||||
end
|
||||
end
|
||||
|
||||
# PATCH/PUT /stories/1
|
||||
def update
|
||||
if @story.update(story_params)
|
||||
redirect_to @story, notice: "Story was successfully updated."
|
||||
else
|
||||
render :edit, status: :unprocessable_entity
|
||||
end
|
||||
end
|
||||
|
||||
# DELETE /stories/1
|
||||
def destroy
|
||||
@story.destroy
|
||||
redirect_to stories_url, notice: "Story was successfully destroyed."
|
||||
end
|
||||
|
||||
private
|
||||
# Use callbacks to share common setup or constraints between actions.
|
||||
def set_story
|
||||
@story = Story.find(params[:id])
|
||||
end
|
||||
|
||||
# Only allow a list of trusted parameters through.
|
||||
def story_params
|
||||
params.require(:story).permit(:picture, :header, :text, :happened)
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user