Skip to content
Snippets Groups Projects

Added tiles checklist for Accept-and-Archiving calibration jobs

Merged Sam Kagan requested to merge WS-1575-tile-specific-auto-pims into release/2.4.3-rc1
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

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
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;
  • Charlotte Hausman approved this merge request

    approved this merge request

  • Sam Kagan added 1 commit

    added 1 commit

    • 1f936991 - Changed port # for nginx config away from WS'

    Compare with previous version

  • Sam Kagan marked this merge request as ready

    marked this merge request as ready

  • Can we get another set of eyes on this one too please?

  • Daniel Nemergut approved this merge request

    approved this merge request

  • 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;
  • Sam Kagan mentioned in commit 47149d96

    mentioned in commit 47149d96

  • merged

  • Please register or sign in to reply
    Loading