From 02a54aed212fb69dbacbbd8629ea1fe3b272cddf Mon Sep 17 00:00:00 2001 From: jwijenbergh Date: Mon, 9 Dec 2024 14:06:02 +0100 Subject: Profile: Implement priority --- internal/api/profiles/profiles.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'internal/api/profiles') diff --git a/internal/api/profiles/profiles.go b/internal/api/profiles/profiles.go index 9f51064..e835ffe 100644 --- a/internal/api/profiles/profiles.go +++ b/internal/api/profiles/profiles.go @@ -26,6 +26,9 @@ type Profile struct { // This is provided for a Linux client issue // See: https://github.com/eduvpn/python-eduvpn-client/issues/550 DNSSearchDomains []string `json:"dns_search_domain_list"` + // Priority is the priority of the profile for sorting in the UI + // the higher the priority, the higher it should be in the list + Priority int `json:"profile_priority"` } // ListInfo is the struct that has the profile list @@ -109,6 +112,7 @@ func (i Info) Public() server.Profiles { "en": p.DisplayName, }, DefaultGateway: p.DefaultGateway, + Priority: p.Priority, } } return server.Profiles{Map: m} -- cgit v1.2.3