Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
teknikattan-scoring-system
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tddd96-grupp1
teknikattan-scoring-system
Merge requests
!99
fix: moved parsers to api
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fix: moved parsers to api
112-move-parsers
into
dev
Overview
0
Commits
1
Pipelines
2
Changes
13
Merged
Carl Schönfelder
requested to merge
112-move-parsers
into
dev
3 years ago
Overview
0
Commits
1
Pipelines
2
Changes
13
Expand
Closes
#112 (closed)
0
0
Merge request reports
Compare
dev
version 2
9ec6c20c
3 years ago
version 1
0aadc65d
3 years ago
dev (base)
and
latest version
latest version
9ec6c20c
1 commit,
3 years ago
version 2
9ec6c20c
1 commit,
3 years ago
version 1
0aadc65d
1 commit,
3 years ago
13 files
+
102
−
148
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
13
Search (e.g. *.vue) (Ctrl+P)
server/app/apis/alternatives.py
+
6
−
5
Options
import
app.core.http_codes
as
codes
import
app.database.controller
as
dbc
from
app.apis
import
check_jwt
,
item_response
,
list_response
from
app.core.dto
import
QuestionAlternativeDTO
,
QuestionDTO
from
app.core.parsers
import
question_alternative_parser
from
app.core.schemas
import
QuestionAlternativeSchema
from
app.database.models
import
Question
,
QuestionAlternative
from
flask_jwt_extended
import
jwt_required
from
app.core.dto
import
QuestionAlternativeDTO
from
flask_restx
import
Resource
from
flask_restx
import
reqparse
api
=
QuestionAlternativeDTO
.
api
schema
=
QuestionAlternativeDTO
.
schema
list_schema
=
QuestionAlternativeDTO
.
list_schema
question_alternative_parser
=
reqparse
.
RequestParser
()
question_alternative_parser
.
add_argument
(
"
text
"
,
type
=
str
,
default
=
None
,
location
=
"
json
"
)
question_alternative_parser
.
add_argument
(
"
value
"
,
type
=
int
,
default
=
None
,
location
=
"
json
"
)
@api.route
(
""
)
@api.param
(
"
competition_id, slide_id, question_id
"
)
Loading