Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
support_lens
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
CI / CD Analytics
Repository Analytics
Value Stream Analytics
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
harshavardhan.c
support_lens
Commits
9a208466
Commit
9a208466
authored
Jan 05, 2021
by
harshavardhan.c
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some enhancements in support lens module
parent
93b0c18b
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
128 additions
and
9 deletions
+128
-9
scripts/config/app_constants.py
scripts/config/app_constants.py
+1
-0
scripts/core/handler/supportcase_setup_handler.py
scripts/core/handler/supportcase_setup_handler.py
+114
-9
scripts/core/services/supportcase_setup_configuration.py
scripts/core/services/supportcase_setup_configuration.py
+13
-0
No files found.
scripts/config/app_constants.py
View file @
9a208466
...
...
@@ -22,6 +22,7 @@ class Endpoints:
edit_support_case
=
base_url
+
"/support_case/edit"
get_support_case_table_details
=
base_url
+
"/support_case/fetch_table"
get_dashboard_details
=
base_url
+
"/support_case/get_dashboard_details"
get_progress_cases
=
base_url
+
"/support_case/get_progress_cases"
class
DBMapping
:
...
...
scripts/core/handler/supportcase_setup_handler.py
View file @
9a208466
This diff is collapsed.
Click to expand it.
scripts/core/services/supportcase_setup_configuration.py
View file @
9a208466
...
...
@@ -96,3 +96,16 @@ def get_dashboard_details():
except
Exception
as
e
:
logger
.
exception
(
"Exception ->
%
s"
%
str
(
e
))
return
final_json
@
supportcase_setup_configuration
.
route
(
Endpoints
.
get_progress_cases
,
methods
=
[
'POST'
])
@
apply_encryption
def
get_dashboard_category_details
():
final_json
=
{
"status"
:
StatusMessages
.
FAILED
,
"message"
:
StatusMessages
.
FAILED
}
try
:
input_data
=
request
.
data
# input_data = request.get_json()
final_json
=
handler_obj
.
get_dashboard_category_details
(
input_data
)
except
Exception
as
e
:
logger
.
exception
(
"Exception ->
%
s"
%
str
(
e
))
return
final_json
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