공개페이지 완료

This commit is contained in:
2025-11-10 14:14:08 +09:00
parent 2ce0b81483
commit ac43ddb55e
67 changed files with 3220 additions and 224696 deletions
@@ -14,7 +14,7 @@ DioException dio401(String path) => DioException(
class StubFetch401Service extends PublicEventService {
@override
Future<Map<String, dynamic>> fetchEvent(String publicHash) async {
throw dio401('/api/public/' + publicHash);
throw dio401('/api/public/$publicHash');
}
}
@@ -37,7 +37,7 @@ class StubUpdate401Service extends PublicEventService {
@override
Future<void> updateScore(String publicHash, {required String participantId, required int gameNumber, required int score, int? handicap, dynamic teamNumber}) async {
throw dio401('/api/public/' + publicHash + '/score');
throw dio401('/api/public/$publicHash/score');
}
}