mirror of
https://github.com/fastenhealth/fasten-onprem.git
synced 2026-04-26 04:58:22 -05:00
c85e829c46
* Adding new system settings table. Adding associated database migration. Added tests Fixing tests for user-settings. * updated migration, make sure default system settings are created. Added database commands to create and update system settings. Added generic response wrapper. * make sure we can get related versions (fasten sources, onprem and desktop) when starting the app.
14 lines
572 B
Go
14 lines
572 B
Go
package models
|
|
|
|
type InstallationRegistrationRequest struct {
|
|
// AdministratorEmail specifies email address for the administrator of the installation
|
|
AdministratorEmail string `json:"administrator_email,omitempty"` //opt-in
|
|
|
|
SoftwareArchitecture string `json:"software_architecture,omitempty"`
|
|
SoftwareOS string `json:"software_os,omitempty"`
|
|
|
|
FastenDesktopVersion string `json:"fasten_desktop_version,omitempty"`
|
|
FastenOnpremVersion string `json:"fasten_onprem_version,omitempty"`
|
|
FastenSourcesVersion string `json:"fasten_sources_version,omitempty"`
|
|
}
|