Skip to content

Commit e318007

Browse files
authored
Merge pull request #771 from IT-Academy-BCN/fix/233-solution-submission
fix(challenge) route edited in environment to meet real endpoint
2 parents 71aaab5 + 2bef9c4 commit e318007

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
44
and this project adheres to
55
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
### [ita-challenges-frontend-3.27.1-RELEASE] - 2026-02-21
8+
9+
### Fixed
10+
- Fixed environment.ts and environment.prod.ts route for solution submission and retrieval.
11+
712
### [ita-challenges-frontend-3.27.0-RELEASE] - 2026-02-16
813
### Added
914
- Feedback to user when saving solution.

conf/.env.CI.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
MICROSERVICE_DEPLOY=ita-challenges-frontend
2-
MICROSERVICE_VERSION=3.27.0-RELEASE
2+
MICROSERVICE_VERSION=3.27.1-RELEASE

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ita-challenges-frontend",
3-
"version": "3.27.0-RELEASE",
3+
"version": "3.27.1-RELEASE",
44
"scripts": {
55
"ng": "ng",
66
"start": "ng serve --proxy-config proxy.conf.dev.json",

src/environments/environment.prod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export const environment = {
55
appVersion: version,
66
BACKEND_ITA_CHALLENGE_BASE_URL: '/itachallenge/api/v1',
77
BACKEND_ITA_CHALLENGE_SOLUTION: '/challenge/solution',
8-
BACKEND_ITA_CHALLENGE_USER_SUBMISSIONS: '/users',
8+
BACKEND_ITA_CHALLENGE_USER_SUBMISSIONS: '/users/',
99
BACKEND_USERINTERACTION_FAVORITES: '/userinteraction/favorites',
1010
BACKEND_ITA_CHALLENGE_TAGS: '/tags',
1111
BACKEND_ITA_SSO_BASE_URL: 'https://dev.sso.itawiki.eurecatacademy.org/api/v1',

src/environments/environment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export const environment = {
55
appVersion: version,
66
BACKEND_ITA_CHALLENGE_BASE_URL: '/itachallenge/api/v1',
77
BACKEND_ITA_CHALLENGE_SOLUTION: '/challenge/solution',
8-
BACKEND_ITA_CHALLENGE_USER_SUBMISSIONS: '/users',
8+
BACKEND_ITA_CHALLENGE_USER_SUBMISSIONS: '/users/',
99
BACKEND_USERINTERACTION_FAVORITES: '/userinteraction/favorites',
1010
BACKEND_ITA_CHALLENGE_TAGS: '/tags',
1111
BACKEND_ITA_SSO_BASE_URL: 'https://dev.sso.itawiki.eurecatacademy.org/api/v1',

0 commit comments

Comments
 (0)