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
Commits
88c30e01
Commit
88c30e01
authored
4 years ago
by
Carl Schönfelder
Browse files
Options
Downloads
Patches
Plain Diff
add: crud-api for City
parent
09a728c0
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#38647
passed
4 years ago
Stage: setup
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
server/app/apis/misc.py
+34
-2
34 additions, 2 deletions
server/app/apis/misc.py
server/app/core/controller/edit.py
+6
-3
6 additions, 3 deletions
server/app/core/controller/edit.py
with
40 additions
and
5 deletions
server/app/apis/misc.py
+
34
−
2
View file @
88c30e01
import
app.core.controller
as
dbc
from
app.core.dto
import
MiscDTO
from
app.core.dto
import
MiscDTO
from
app.core.models
import
City
,
MediaType
,
QuestionType
,
Role
from
app.core.models
import
City
,
MediaType
,
QuestionType
,
Role
from
flask_jwt_extended
import
jwt_required
from
flask_jwt_extended
import
jwt_required
from
flask_restx
import
Resource
from
flask_restx
import
Resource
,
reqparse
api
=
MiscDTO
.
api
api
=
MiscDTO
.
api
...
@@ -11,6 +12,10 @@ role_model = MiscDTO.role_model
...
@@ -11,6 +12,10 @@ role_model = MiscDTO.role_model
city_model
=
MiscDTO
.
city_model
city_model
=
MiscDTO
.
city_model
name_parser
=
reqparse
.
RequestParser
()
name_parser
.
add_argument
(
"
name
"
,
type
=
str
,
required
=
True
,
location
=
"
json
"
)
@api.route
(
"
/media_types
"
)
@api.route
(
"
/media_types
"
)
class
MediaTypeList
(
Resource
):
class
MediaTypeList
(
Resource
):
@jwt_required
@jwt_required
...
@@ -36,8 +41,35 @@ class RoleList(Resource):
...
@@ -36,8 +41,35 @@ class RoleList(Resource):
@api.route
(
"
/cities
"
)
@api.route
(
"
/cities
"
)
class
Cit
y
List
(
Resource
):
class
Cit
ies
List
(
Resource
):
@jwt_required
@jwt_required
@api.marshal_with
(
city_model
)
@api.marshal_with
(
city_model
)
def
get
(
self
):
def
get
(
self
):
return
City
.
query
.
all
()
return
City
.
query
.
all
()
@jwt_required
@api.marshal_with
(
role_model
)
def
post
(
self
):
args
=
name_parser
.
parse_args
(
strict
=
True
)
dbc
.
add
.
default
(
City
(
args
[
"
name
"
]))
return
City
.
query
.
all
()
@api.route
(
"
/cities/<ID>
"
)
@api.param
(
"
ID
"
)
class
Cities
(
Resource
):
@jwt_required
@api.marshal_with
(
city_model
)
def
put
(
self
,
ID
):
item
=
City
.
query
.
filter
(
City
.
id
==
ID
).
first
()
args
=
name_parser
.
parse_args
(
strict
=
True
)
item
.
name
=
args
[
"
name
"
]
dbc
.
edit
.
default
(
item
)
return
City
.
query
.
all
()
@jwt_required
@api.marshal_with
(
city_model
)
def
delete
(
self
,
ID
):
item
=
City
.
query
.
filter
(
City
.
id
==
ID
).
first
()
dbc
.
delete
.
default
(
item
)
return
City
.
query
.
all
()
This diff is collapsed.
Click to expand it.
server/app/core/controller/edit.py
+
6
−
3
View file @
88c30e01
import
math
from
app.core
import
db
from
app.core
import
db
from
app.core.models
import
Blacklist
,
City
,
Competition
,
Role
,
Slide
,
User
def
default
(
item
):
db
.
session
.
commit
()
db
.
session
.
refresh
(
item
)
return
item
def
switch_order
(
item1
,
item2
):
def
switch_order
(
item1
,
item2
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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