Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
blog
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mis-21-2018-intersession
rails
blog
Commits
722e6980
Commit
722e6980
authored
Jul 02, 2018
by
John Noel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added Post delete function
parent
041d3258
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
posts_controller.rb
app/controllers/posts_controller.rb
+11
-0
index.html.erb
app/views/posts/index.html.erb
+3
-0
No files found.
app/controllers/posts_controller.rb
View file @
722e6980
...
...
@@ -21,6 +21,17 @@ class PostsController < ApplicationController
end
end
def
destroy
@post
=
Post
.
find_by
(
id:
params
[
:id
])
if
@post
.
present?
@post
.
destroy
alert
=
"You have successfully deleted a post."
else
alert
=
"Post not found."
end
redirect_to
posts_path
,
alert:
alert
end
def
edit
end
...
...
app/views/posts/index.html.erb
View file @
722e6980
...
...
@@ -29,6 +29,9 @@
<td>
<%=
link_to
"Show"
,
post_path
(
post
),
class:
"btn btn-primary"
%>
</td>
<td>
<%=
link_to
"Delete"
,
post_path
(
post
),
class:
"btn btn-danger"
,
method: :delete
,
data:
{
confirm:
"Are you sure you want to delete?"
}
%>
</td>
</tr>
<%
end
%>
</tbody>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment