| 35 | AllowDeletion bool `json:"allow_deletion"` |
| 36 | } |
| 37 | type BaseOpts struct { |
| 38 | ContainerId string `json:"container_id,omitempty"` |
| 39 | Password string `json:"password,omitempty"` |
| 40 | WebPort string `json:"web_port,omitempty"` |
| 41 | RunAsUser string `json:"run_as_user,omitempty"` |
| 42 | Username string `json:"username,omitempty"` |
| 43 | ConfigFolder string `json:"config_folder,omitempty"` |
| 44 | DataFolder string `json:"data_folder,omitempty"` |
| 45 | MediaFolder string `json:"media_folder,omitempty"` |
| 46 | NoTemplates string `json:"no_templates"` |
| 47 | User *user.User `json:"user,omitempty"` |
| 48 | } |
| 49 | |
| 50 | func (self *BaseOpts) GetBaseOpts() BaseOpts { |
| 51 | return *self |
nothing calls this directly
no outgoing calls
no test coverage detected