Added tiles checklist for Accept-and-Archiving calibration jobs
2 unresolved threads
2 unresolved threads
Allows selection of which tiles to run auto-PIMS on.
Also folded the execution-details-planes
component into execution-detail
, resulting in only one Accept & Archive button no matter what, and added an nginx config file for running the manager services and UI together locally.
The planes checklist has been tested just using the frontend, and the tiles checklist has been tested using tiles from the backend, and it successfully persists the tile selections made.
Edited by Sam Kagan
Merge request reports
Activity
added 17 commits
-
21fe39be...d9ec9d7d - 4 commits from branch
release/2.4.3-rc1
- d9ec9d7d...fa794ab6 - 3 earlier commits
- 8607f1d5 - Fixed CORS issues in local UI via nginx rev-proxy
- e9df19e6 - Unmocked getTiles svc, refactored checklists to work with it
- e9e657d6 - Updated to take in Tiles as objects, emit them as IDs
- 084793a7 - Simplified component since this.job is constant
- 35afe5fe - Called dedicated endpoint for auto-pims tile persistence
- 2110d508 - Fixed issues with local Nginx config
- dee9bf94 - Unmocked planes stuff and put the svc back the way it was
- f318486c - Fixed fetching of tiles and planes
- 57e017d8 - Fixed small bug, unmocked jobSvc.updateNotes
- 903df5a4 - Unmocked rest of the API calls
Toggle commit list-
21fe39be...d9ec9d7d - 4 commits from branch
- vlass-nginx.local.conf 0 → 100644
5 # TTAT is free software: you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation, either version 3 of the License, or 8 # any later version. 9 # 10 # TTAT is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with TTAT. If not, see <https://www.gnu.org/licenses/>. 17 # 18 http { 19 server { 20 listen 4444; changed this line in version 3 of the diff
added 1 commit
- 1f936991 - Changed port # for nginx config away from WS'
164 165 } 165 166 166 167 // Returns a JSON encoded string of plane information 167 public getPlanes(id: number): Observable<any> { 168 return this.http.get(this.configService.config.url + this.endPoint + 'jobs/' + id + '/planes', {observe: 'response'}).pipe( 168 public getPlanes(id: number): Observable<string> { 169 return this.http.get<string>(this.configService.config.url + this.endPoint + 'jobs/' + id + '/planes', {observe: 'response'}).pipe( 169 170 map(response => { 170 return response; 171 return response.body; mentioned in commit 47149d96
Please register or sign in to reply