Skip to content

Commit

Permalink
Bump to SkyPortal a9ec93d5fb88d252754f607f58eaaf56894b38bb
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienPeloton committed May 1, 2024
1 parent 1bd9dc7 commit 690a110
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions extensions/skyportal/skyportal/app_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
UserACLHandler,
AllocationHandler,
AllocationReportHandler,
AllocationObservationPlanHandler,
AssignmentHandler,
BulkTNSHandler,
CandidateHandler,
Expand Down Expand Up @@ -232,6 +233,7 @@ def log_request(self, handler):
# API endpoints
(r'/api/acls', ACLHandler),
(r'/api/allocation/report(/[0-9]+)', AllocationReportHandler),
(r'/api/allocation/observation_plans/([0-9]+)', AllocationObservationPlanHandler),
(r'/api/allocation(/.*)?', AllocationHandler),
(r'/api/analysis_service/([0-9]+)/default_analysis(/.*)?', DefaultAnalysisHandler),
(r'/api/analysis_service(/.*)?', AnalysisServiceHandler),
Expand Down
2 changes: 1 addition & 1 deletion skyportal
Submodule skyportal updated 34 files
+1 −1 data/db_demo.yaml
+1 −1 requirements.txt
+79 −8 services/tns_submission_queue/tns_submission_queue.py
+2 −0 skyportal/app_server.py
+1 −0 skyportal/facility_apis/observation_plan.py
+40 −7 skyportal/facility_apis/trt.py
+5 −5 skyportal/facility_apis/winter.py
+9 −0 skyportal/facility_apis/ztf.py
+5 −1 skyportal/handlers/api/__init__.py
+162 −0 skyportal/handlers/api/allocation.py
+4 −0 skyportal/handlers/api/annotation_services.py
+98 −60 skyportal/handlers/api/candidate.py
+57 −1 skyportal/handlers/api/followup_request.py
+12 −1 skyportal/handlers/api/observation_plan.py
+31 −10 skyportal/handlers/api/observingrun.py
+99 −68 skyportal/handlers/api/source.py
+129 −121 skyportal/handlers/api/sources.py
+0 −19 skyportal/handlers/api/sources_confirmed_in_gcn.py
+36 −0 skyportal/utils/asynchronous.py
+12 −4 static/js/API.js
+313 −32 static/js/components/AllocationSummary.jsx
+6 −0 static/js/components/CommentEntry.jsx
+1 −0 static/js/components/EditComment.jsx
+44 −19 static/js/components/FilterCandidateList.jsx
+5 −0 static/js/components/FollowupRequestSelectionForm.jsx
+22 −3 static/js/components/GcnSelectionForm.jsx
+142 −0 static/js/components/ObservationPlanGlobe.jsx
+1 −1 static/js/components/ObservationPlanRequestForm.jsx
+184 −376 static/js/components/ObservationPlanRequestLists.jsx
+94 −0 static/js/components/ObservationPlanSummaryStatistics.jsx
+7 −0 static/js/components/SourceTable.jsx
+30 −2 static/js/ducks/observationPlans.js
+6 −0 static/js/ducks/source.js
+1 −1 static/js/ducks/sources.js

0 comments on commit 690a110

Please sign in to comment.