ui: Display score grid in team page
Some checks are pending
continuous-integration/drone/push Build is running

This commit is contained in:
nemunaire 2022-06-06 14:40:18 +02:00
commit 39acdee6b2
5 changed files with 114 additions and 0 deletions

View file

@ -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;

View file

@ -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;

View file

@ -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;