-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into CSCEXAM-1389
- Loading branch information
Showing
21 changed files
with
382 additions
and
155 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
-- SPDX-FileCopyrightText: 2024 The members of the EXAM Consortium | ||
-- | ||
-- SPDX-License-Identifier: EUPL-1.2 | ||
|
||
# --- !Ups | ||
ALTER TABLE reservation ADD external_org_ref character varying(32); | ||
ALTER TABLE reservation ADD external_org_name character varying(255); | ||
|
||
# --- !Downs | ||
ALTER TABLE reservation DROP external_org_ref; | ||
ALTER TABLE reservation DROP external_org_name; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -343,6 +343,8 @@ public void testProvideReservation() { | |
.put("start", ISODateTimeFormat.dateTime().print(start)) | ||
.put("end", ISODateTimeFormat.dateTime().print(end)) | ||
.put("user", "[email protected]") | ||
.put("orgRef", "1234") | ||
.put("orgName", "1234") | ||
); | ||
assertThat(result.status()).isEqualTo(201); | ||
Reservation reservation = DB.find(Reservation.class).where().eq("externalRef", RESERVATION_REF).findOne(); | ||
|
Oops, something went wrong.