ui: Display score grid in team page
Some checks are pending
continuous-integration/drone/push Build is running
Some checks are pending
continuous-integration/drone/push Build is running
This commit is contained in:
parent
46d1bb21f7
commit
39acdee6b2
5 changed files with 114 additions and 0 deletions
|
|
@ -150,6 +150,13 @@ server {
|
|||
expires epoch;
|
||||
add_header Cache-Control no-cache;
|
||||
}
|
||||
location /scores.json {
|
||||
include fic-auth.conf;
|
||||
|
||||
root /srv/TEAMS/$team/;
|
||||
expires epoch;
|
||||
add_header Cache-Control no-cache;
|
||||
}
|
||||
location = /events.json {
|
||||
root /srv/TEAMS/;
|
||||
expires epoch;
|
||||
|
|
|
|||
|
|
@ -136,6 +136,13 @@ server {
|
|||
expires epoch;
|
||||
add_header Cache-Control no-cache;
|
||||
}
|
||||
location /scores.json {
|
||||
include fic-get-team.conf;
|
||||
|
||||
root ${PATH_TEAMS}/$team/;
|
||||
expires epoch;
|
||||
add_header Cache-Control no-cache;
|
||||
}
|
||||
location /teams.json {
|
||||
root ${PATH_TEAMS};
|
||||
expires epoch;
|
||||
|
|
|
|||
|
|
@ -140,6 +140,13 @@ server {
|
|||
expires epoch;
|
||||
add_header Cache-Control no-cache;
|
||||
}
|
||||
location /scores.json {
|
||||
include fic-get-team.conf;
|
||||
|
||||
root /srv/TEAMS/$team/;
|
||||
expires epoch;
|
||||
add_header Cache-Control no-cache;
|
||||
}
|
||||
location = /events.json {
|
||||
root /srv/TEAMS/;
|
||||
expires epoch;
|
||||
|
|
|
|||
Reference in a new issue