Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
UPSMF
uphrh-smf-form
Commits
4ea5f1ed
Commit
4ea5f1ed
authored
2 years ago
by
Saroj Singh
Browse files
Options
Download
Patches
Plain Diff
remove unwanted code
parent
24a36abb
master
delete-form
1 merge request
!10
Delete form
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/com/tarento/formservice/controllers/FormsController.java
+0
-14
.../com/tarento/formservice/controllers/FormsController.java
with
0 additions
and
14 deletions
+0
-14
src/main/java/com/tarento/formservice/controllers/FormsController.java
+
0
−
14
View file @
4ea5f1ed
...
...
@@ -79,20 +79,6 @@ public class FormsController {
return
ResponseGenerator
.
successResponse
(
formsService
.
getFormById
(
formId
));
}
@PostMapping
(
value
=
PathRoutes
.
FormServiceApi
.
GET_FORM_BY_ID
,
produces
=
MediaType
.
APPLICATION_JSON_VALUE
)
public
String
deleteFormById
(
@RequestHeader
(
value
=
Constants
.
Parameters
.
X_USER_INFO
,
required
=
false
)
String
xUserInfo
,
@RequestParam
(
value
=
Constants
.
ID
,
required
=
true
)
String
id
)
throws
JsonProcessingException
{
Long
formId
=
null
;
if
(
id
.
length
()
<=
13
)
{
formId
=
Long
.
parseLong
(
id
);
}
else
if
(
id
instanceof
String
)
{
FormData
fData
=
decodeValue
(
String
.
valueOf
(
id
));
formId
=
fData
.
getId
();
}
return
ResponseGenerator
.
successResponse
(
formsService
.
getFormById
(
formId
));
}
@PostMapping
(
value
=
PathRoutes
.
FormServiceApi
.
CREATE_FORM
)
public
String
createForm
(
@RequestBody
FormDetail
form
,
@RequestHeader
(
value
=
Constants
.
Parameters
.
X_USER_INFO
,
required
=
false
)
String
xUserInfo
)
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets