diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2024-12-09 14:06:02 +0100 |
|---|---|---|
| committer | jwijenbergh <jwijenbergh@noreply.codeberg.org> | 2024-12-09 15:48:36 +0000 |
| commit | 02a54aed212fb69dbacbbd8629ea1fe3b272cddf (patch) | |
| tree | 69207041816328e7e0aa85660ff2837d9f4d9cd8 /types | |
| parent | f88a7b917db9dab7c3d7a26b7a7ece11c4d5eb20 (diff) | |
Profile: Implement priority
Diffstat (limited to 'types')
| -rw-r--r-- | types/server/server.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/types/server/server.go b/types/server/server.go index 26c41c3..5d5d4ca 100644 --- a/types/server/server.go +++ b/types/server/server.go @@ -89,6 +89,10 @@ type Profile struct { // DefaultGateway is true when the profile is a default gateway one DefaultGateway bool `json:"default_gateway"` + + // 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:"priority"` } // Profiles is the map of profiles with the current defined |
