From 0a1538985ea8c470130031dc47b0591d1a41dc5e Mon Sep 17 00:00:00 2001 From: Aaron Detre Date: Mon, 7 Apr 2025 11:28:53 -0700 Subject: [PATCH 1/2] Updated URLS for RunInfoAPIController refactor --- src/app/student/student.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/student/student.service.ts b/src/app/student/student.service.ts index bc1d80f49b8..15e0ab91fd2 100644 --- a/src/app/student/student.service.ts +++ b/src/app/student/student.service.ts @@ -10,8 +10,8 @@ import { StudentRun } from './student-run'; @Injectable() export class StudentService { private runsUrl = '/api/student/runs'; - private runInfoUrl = '/api/student/run/info'; - private runInfoByIdUrl = '/api/user/run/info-by-id'; + private runInfoUrl = '/api/run-info/run/info'; + private runInfoByIdUrl = '/api/run-info/run/info-by-id'; private addRunUrl = '/api/student/run/register'; private launchRunUrl = '/api/student/run/launch'; private registerUrl = '/api/student/register'; From a61d75f63c57ac5dc1c0f68b9a13f6f61610cdd3 Mon Sep 17 00:00:00 2001 From: Hiroki Terashima Date: Fri, 23 May 2025 17:51:56 -0700 Subject: [PATCH 2/2] Simplify path --- src/app/student/student.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/student/student.service.ts b/src/app/student/student.service.ts index 15e0ab91fd2..5374f4c9335 100644 --- a/src/app/student/student.service.ts +++ b/src/app/student/student.service.ts @@ -10,8 +10,8 @@ import { StudentRun } from './student-run'; @Injectable() export class StudentService { private runsUrl = '/api/student/runs'; - private runInfoUrl = '/api/run-info/run/info'; - private runInfoByIdUrl = '/api/run-info/run/info-by-id'; + private runInfoUrl = '/api/run/info'; + private runInfoByIdUrl = '/api/run/info-by-id'; private addRunUrl = '/api/student/run/register'; private launchRunUrl = '/api/student/run/launch'; private registerUrl = '/api/student/register';