Skip to content
This repository was archived by the owner on Jul 18, 2026. It is now read-only.

Commit e3281ba

Browse files
committed
dont request hidden sources by default.
Upgrade to latest version of fasten-sources,
1 parent 0428766 commit e3281ba

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

frontend/src/app/pages/dashboard/dashboard.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export class DashboardComponent implements OnInit {
3232
ngOnInit() {
3333
this.loading = true
3434

35-
forkJoin([this.fastenApi.getSummary(), this.lighthouseApi.getLighthouseSourceMetadataMap(true)]).subscribe(results => {
35+
forkJoin([this.fastenApi.getSummary(), this.lighthouseApi.getLighthouseSourceMetadataMap(false)]).subscribe(results => {
3636
this.loading = false
3737
let summary = results[0] as Summary
3838
let metadataSource = results[1] as { [name: string]: MetadataSource }

frontend/src/app/pages/medical-sources/medical-sources.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export class MedicalSourcesComponent implements OnInit {
5959

6060
ngOnInit(): void {
6161
this.loading = true
62-
forkJoin([this.lighthouseApi.getLighthouseSourceMetadataMap(true), this.fastenApi.getSources()]).subscribe(results => {
62+
forkJoin([this.lighthouseApi.getLighthouseSourceMetadataMap(false), this.fastenApi.getSources()]).subscribe(results => {
6363
this.loading = false
6464
//handle source metadata map response
6565
this.metadataSources = results[0] as {[name:string]: MetadataSource}

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.18
55
require (
66
github.com/analogj/go-util v0.0.0-20210417161720-39b497cca03b
77
github.com/dominikbraun/graph v0.15.0
8-
github.com/fastenhealth/fasten-sources v0.0.14
8+
github.com/fastenhealth/fasten-sources v0.1.0
99
github.com/gin-gonic/gin v1.8.1
1010
github.com/glebarez/sqlite v1.5.0
1111
github.com/golang-jwt/jwt/v4 v4.4.2

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1m
7474
github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5ynNVH9qI8YYLbd1fK2po=
7575
github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk=
7676
github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c=
77-
github.com/fastenhealth/fasten-sources v0.0.14 h1:+SGn/gzhC9MU2OzZy8hn9giiuOs6lJgIKPReY8STe5U=
78-
github.com/fastenhealth/fasten-sources v0.0.14/go.mod h1:NBh0n2OBwJC10CHqkIx4WYQcDBRywJU4TAR8rSfR2Ts=
77+
github.com/fastenhealth/fasten-sources v0.1.0 h1:16rAOo/dd35mINRVI7XnCohKK153FLdzOjBduvhhwks=
78+
github.com/fastenhealth/fasten-sources v0.1.0/go.mod h1:NBh0n2OBwJC10CHqkIx4WYQcDBRywJU4TAR8rSfR2Ts=
7979
github.com/fastenhealth/gofhir-models v0.0.4 h1:Q//StwNXGfK+WAS2DckGBHAP1R4cHMRZEF/sLGgmR04=
8080
github.com/fastenhealth/gofhir-models v0.0.4/go.mod h1:xB8ikGxu3bUq2b1JYV+CZpHqBaLXpOizFR0eFBCunis=
8181
github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4=

0 commit comments

Comments
 (0)