diff options
Diffstat (limited to 'client/model.go')
-rw-r--r-- | client/model.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/client/model.go b/client/model.go index f0583ae4..0a6cd4d1 100644 --- a/client/model.go +++ b/client/model.go @@ -45,6 +45,7 @@ type User struct { MediaPlaybackRate float64 `json:"media_playback_rate"` BlockFilterEntryRules string `json:"block_filter_entry_rules"` KeepFilterEntryRules string `json:"keep_filter_entry_rules"` + ExternalFontHosts string `json:"external_font_hosts"` } func (u User) String() string { @@ -88,6 +89,7 @@ type UserModificationRequest struct { MediaPlaybackRate *float64 `json:"media_playback_rate"` BlockFilterEntryRules *string `json:"block_filter_entry_rules"` KeepFilterEntryRules *string `json:"keep_filter_entry_rules"` + ExternalFontHosts *string `json:"external_font_hosts"` } // Users represents a list of users. |