Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Graphics generator
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alexa Valentová
Graphics generator
Commits
b9ca6e25
Verified
Commit
b9ca6e25
authored
1 year ago
by
Alexa Valentová
Browse files
Options
Downloads
Patches
Plain Diff
fix avatar URLs
parent
9ca99480
Branches
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#18074
passed
1 year ago
Stage: build
Stage: test_deploy
Changes
2
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
frontend/src/views/avatar/Avatar.vue
+0
-16
0 additions, 16 deletions
frontend/src/views/avatar/Avatar.vue
server/server/views/frontend.py
+5
-5
5 additions, 5 deletions
server/server/views/frontend.py
with
5 additions
and
21 deletions
frontend/src/views/avatar/Avatar.vue
+
0
−
16
View file @
b9ca6e25
...
...
@@ -71,22 +71,6 @@ export default {
</
template
>
<
template
v-slot:right
>
<div
class=
"prose max-w-none"
>
<p>
Amet illo et atque et voluptates esse ad magni. Dolor omnis non ad.
Qui est aut aperiam rerum atque mollitia ut. Ea aliquam nihil earum
vel. Dicta odit quod aliquam molestiae porro ex error. Aut soluta et
voluptatibus vel.
</p>
<p>
Quo quos est eaque ipsa esse. Laboriosam laborum est facilis.
Corporis excepturi consequuntur quo dolorem omnis accusantium
expedita voluptates. Ut omnis et asperiores consequatur quia
voluptatum repudiandae.
</p>
</div>
<ImageInput
name=
"Obrázek"
v-model=
"mainImage"
...
...
This diff is collapsed.
Click to expand it.
server/server/views/frontend.py
+
5
−
5
View file @
b9ca6e25
...
...
@@ -5,13 +5,13 @@ from server.authentication import authentication_required
frontend_blueprint
=
flask
.
Blueprint
(
"
frontend
"
,
__name__
)
@frontend_blueprint.route
(
"
/avatar
"
)
def
avatars
()
->
flask
.
Response
:
return
flask
.
render_template
(
"
index.html
"
)
@frontend_blueprint.route
(
"
/
"
,
defaults
=
{
"
path
"
:
""
})
@frontend_blueprint.route
(
"
/<path:path>
"
)
@authentication_required
def
index
(
path
:
str
)
->
flask
.
Response
:
return
flask
.
render_template
(
"
index.html
"
)
@frontend_blueprint.route
(
"
/avatar
"
)
def
avatars
()
->
flask
.
Response
:
return
flask
.
render_template
(
"
index.html
"
)
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