Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
09f0ddd
Merge pull request #1 from AimCup/stage
PatrickOrlowski Jan 14, 2024
3e4db40
Merge pull request #2 from AimCup/next
OrlowskiAdam Jun 3, 2024
c621eeb
Merge pull request #3 from AimCup/next
PatrickOrlowski Aug 14, 2024
09ab1ca
Merge pull request #4 from AimCup/next
PatrickOrlowski Aug 14, 2024
abec739
Merge pull request #5 from AimCup/next
PatrickOrlowski Aug 14, 2024
74c0aef
Merge pull request #6 from AimCup/next
PatrickOrlowski Aug 14, 2024
348280f
Merge pull request #7 from AimCup/next
PatrickOrlowski Aug 15, 2024
4cfb53a
chore: handle staff members error
PatrickOrlowski Aug 15, 2024
e8cf65c
chore: changed disclaimer
PatrickOrlowski Aug 15, 2024
7367577
chore: updated socials links
PatrickOrlowski Aug 15, 2024
c9e8f8b
chore: updated disclaimer
PatrickOrlowski Aug 15, 2024
2ea1981
chore: added teams page
PatrickOrlowski Aug 15, 2024
155a869
feat: added heyapi as main fetch request
PatrickOrlowski Aug 16, 2024
e8e98f0
chore: added teams delete action
PatrickOrlowski Aug 16, 2024
4fc15ff
chore: remove cache from getUser
PatrickOrlowski Aug 16, 2024
bba6896
fix: fixed requests
PatrickOrlowski Aug 16, 2024
abb6d76
fix: fixed requests
PatrickOrlowski Aug 16, 2024
e88412d
Merge branch 'master' into next2
PatrickOrlowski Aug 16, 2024
9e5bb9b
Merge pull request #8 from AimCup/next2
PatrickOrlowski Aug 16, 2024
709c07e
fix: fixed requests
PatrickOrlowski Aug 16, 2024
8e9ee59
fix: fixed endpoint path variable name
PatrickOrlowski Aug 16, 2024
8b64c21
fix: fixed display issues
PatrickOrlowski Aug 16, 2024
ad546ac
feat: added qualification rooms
PatrickOrlowski Sep 13, 2024
da709af
fix: fixed max qualification room offset
PatrickOrlowski Sep 13, 2024
a0aa6e9
feat: added download button
PatrickOrlowski Sep 15, 2024
6983187
fix: fixed mappool
PatrickOrlowski Sep 15, 2024
da6df15
fix: added number of QR
OrlowskiAdam Sep 15, 2024
d411a21
fix: fixed number of QR
OrlowskiAdam Sep 15, 2024
519605c
fix: fixed mappool
PatrickOrlowski Sep 15, 2024
ecbd1c8
chore: fixed mappool
PatrickOrlowski Sep 15, 2024
759d592
fix: low-res beatmap image
OrlowskiAdam Sep 15, 2024
33ea7fc
fix: dl button margin
OrlowskiAdam Sep 15, 2024
3ac2056
fix: format time for mappool card
OrlowskiAdam Sep 15, 2024
283816f
fix: sort beatmaps by position
OrlowskiAdam Sep 16, 2024
5fb5cd9
fix: fixed default logo team
PatrickOrlowski Sep 17, 2024
a179d59
fix: added utc
OrlowskiAdam Sep 19, 2024
e6743b3
feat: matches list
OrlowskiAdam Sep 22, 2024
d7c148e
feat: added matches
PatrickOrlowski Sep 24, 2024
7a026e4
feat: adding matches + sign in/out
OrlowskiAdam Sep 24, 2024
026c792
fix: added captain's discord username in team's page
OrlowskiAdam Sep 24, 2024
6a0ba3b
fix: changed sign in statement to look for roles permission
OrlowskiAdam Sep 24, 2024
dad8f2d
fix: display match id on schedule page
OrlowskiAdam Sep 26, 2024
ff436cf
feat: Added match ID to dashboard
OrlowskiAdam Sep 27, 2024
c6a7da3
feat: Match ID in modal
OrlowskiAdam Sep 30, 2024
f82cdf0
feat: added StageNavigation component and team management modals
OrlowskiAdam Dec 10, 2025
21fa7aa
fix: Fixed errors
OrlowskiAdam Dec 21, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy.next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Fetch OpenAPI schema
run: npm run open:api
- name: Generate API client
run: npm run open:generate
run: npm run openapi-ts
- name: Build and deploy to Next environment
run: docker-compose -f docker-compose.next.yml up -d --build
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Fetch OpenAPI schema
run: npm run open:api
- name: Generate API client
run: npm run open:generate
run: npm run openapi-ts
- name: Build and deploy to Next environment
run: docker-compose -f docker-compose.yml up -d --build
env:
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,6 @@ next-env.d.ts
openapi.json
/generated
.idea
.env
.env

/client
7 changes: 0 additions & 7 deletions .idea/misc.xml

This file was deleted.

13 changes: 13 additions & 0 deletions openapi-ts.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { defineConfig } from "@hey-api/openapi-ts";

export default defineConfig({
client: "@hey-api/client-fetch",
input: "./openapi.json",
output: {
format: "prettier",
path: "./client",
},
types: {
enums: "typescript",
},
});
Loading
Loading