Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
shotengai
Project
Overview
Details
Activity
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
open-source
shotengai
Commits
a1bf8cc1
Commit
a1bf8cc1
authored
Oct 01, 2017
by
ivan Lan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add record not found rescue_from
parent
64324db9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
base.rb
lib/shotengai/controller/base.rb
+5
-1
No files found.
lib/shotengai/controller/base.rb
View file @
a1bf8cc1
...
...
@@ -60,7 +60,11 @@ module Shotengai
rescue_from
ActiveRecord
::
RecordInvalid
do
|
e
|
render
json:
{
error:
e
.
message
},
status:
400
end
rescue_from
ActiveRecord
::
RecordNotFound
do
|
e
|
render
json:
{
error:
e
.
message
},
status:
404
end
rescue_from
AASM
::
InvalidTransition
do
|
e
|
render
json:
{
error:
e
.
message
},
status:
400
end
...
...
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