Documentation ¶
Index ¶
- type Actionable
- type AddNewComment
- type AssignUnassignTag
- type ChangeUserEmail
- type ChangeUserRole
- type CompleteProfile
- type CreateEditBillingPaymentInfo
- type CreateEditOAuthConfig
- type CreateEditTag
- type CreateNewPost
- type CreateTenant
- type CreateUser
- type DeleteComment
- type DeletePost
- type DeleteTag
- type EditComment
- type InviteUsers
- type SetResponse
- type SignInByEmail
- type UpdatePost
- type UpdateTenantAdvancedSettings
- type UpdateTenantPrivacy
- type UpdateTenantSettings
- type UpdateUserSettings
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Actionable ¶
type Actionable interface { Initialize() interface{} IsAuthorized(user *models.User, services *app.Services) bool Validate(user *models.User, services *app.Services) *validate.Result }
Actionable is any action that the user can perform using the web app
type AddNewComment ¶
type AddNewComment struct {
Model *models.NewComment
}
AddNewComment represents a new comment to be added
func (*AddNewComment) Initialize ¶ added in v0.6.0
func (input *AddNewComment) Initialize() interface{}
Initialize the model
func (*AddNewComment) IsAuthorized ¶
IsAuthorized returns true if current user is authorized to perform this action
type AssignUnassignTag ¶ added in v0.8.0
AssignUnassignTag is used to assign or remove a tag to/from an post
func (*AssignUnassignTag) Initialize ¶ added in v0.8.0
func (input *AssignUnassignTag) Initialize() interface{}
Initialize the model
func (*AssignUnassignTag) IsAuthorized ¶ added in v0.8.0
IsAuthorized returns true if current user is authorized to perform this action
type ChangeUserEmail ¶ added in v0.9.0
type ChangeUserEmail struct {
Model *models.ChangeUserEmail
}
ChangeUserEmail is the action used to change current user's email
func (*ChangeUserEmail) Initialize ¶ added in v0.9.0
func (input *ChangeUserEmail) Initialize() interface{}
Initialize the model
func (*ChangeUserEmail) IsAuthorized ¶ added in v0.9.0
IsAuthorized returns true if current user is authorized to perform this action
type ChangeUserRole ¶ added in v0.7.0
type ChangeUserRole struct {
Model *models.ChangeUserRole
}
ChangeUserRole is the input model change role of an user
func (*ChangeUserRole) Initialize ¶ added in v0.7.0
func (input *ChangeUserRole) Initialize() interface{}
Initialize the model
func (*ChangeUserRole) IsAuthorized ¶ added in v0.7.0
IsAuthorized returns true if current user is authorized to perform this action
type CompleteProfile ¶ added in v0.6.0
type CompleteProfile struct {
Model *models.CompleteProfile
}
CompleteProfile happens when users completes their profile during first time sign in
func (*CompleteProfile) Initialize ¶ added in v0.6.0
func (input *CompleteProfile) Initialize() interface{}
Initialize the model
func (*CompleteProfile) IsAuthorized ¶ added in v0.6.0
IsAuthorized returns true if current user is authorized to perform this action
type CreateEditBillingPaymentInfo ¶ added in v0.18.0
type CreateEditBillingPaymentInfo struct {
Model *models.CreateEditBillingPaymentInfo
}
CreateEditBillingPaymentInfo is used to create/edit billing payment info
func (*CreateEditBillingPaymentInfo) Initialize ¶ added in v0.18.0
func (input *CreateEditBillingPaymentInfo) Initialize() interface{}
Initialize the model
func (*CreateEditBillingPaymentInfo) IsAuthorized ¶ added in v0.18.0
func (input *CreateEditBillingPaymentInfo) IsAuthorized(user *models.User, services *app.Services) bool
IsAuthorized returns true if current user is authorized to perform this action
type CreateEditOAuthConfig ¶ added in v0.15.0
type CreateEditOAuthConfig struct {
Model *models.CreateEditOAuthConfig
}
CreateEditOAuthConfig is used to create/edit OAuth config
func (*CreateEditOAuthConfig) Initialize ¶ added in v0.15.0
func (input *CreateEditOAuthConfig) Initialize() interface{}
Initialize the model
func (*CreateEditOAuthConfig) IsAuthorized ¶ added in v0.15.0
IsAuthorized returns true if current user is authorized to perform this action
type CreateEditTag ¶ added in v0.8.0
type CreateEditTag struct { Tag *models.Tag Model *models.CreateEditTag }
CreateEditTag is used to create a new tag or edit existing
func (*CreateEditTag) Initialize ¶ added in v0.8.0
func (input *CreateEditTag) Initialize() interface{}
Initialize the model
func (*CreateEditTag) IsAuthorized ¶ added in v0.8.0
IsAuthorized returns true if current user is authorized to perform this action
type CreateNewPost ¶ added in v0.15.0
CreateNewPost is used to create a new post
func (*CreateNewPost) Initialize ¶ added in v0.15.0
func (input *CreateNewPost) Initialize() interface{}
Initialize the model
func (*CreateNewPost) IsAuthorized ¶ added in v0.15.0
IsAuthorized returns true if current user is authorized to perform this action
type CreateTenant ¶
type CreateTenant struct {
Model *models.CreateTenant
}
CreateTenant is the input model used to create a tenant
func (*CreateTenant) Initialize ¶ added in v0.6.0
func (input *CreateTenant) Initialize() interface{}
Initialize the model
func (*CreateTenant) IsAuthorized ¶
IsAuthorized returns true if current user is authorized to perform this action
type CreateUser ¶ added in v0.16.0
type CreateUser struct {
Model *models.CreateUser
}
CreateUser is the action to create a new user
func (*CreateUser) Initialize ¶ added in v0.16.0
func (input *CreateUser) Initialize() interface{}
Initialize the model
func (*CreateUser) IsAuthorized ¶ added in v0.16.0
IsAuthorized returns true if current user is authorized to perform this action
type DeleteComment ¶ added in v0.16.0
type DeleteComment struct {
Model *models.DeleteComment
}
DeleteComment represents the action of deleting an existing comment
func (*DeleteComment) Initialize ¶ added in v0.16.0
func (input *DeleteComment) Initialize() interface{}
Initialize the model
func (*DeleteComment) IsAuthorized ¶ added in v0.16.0
IsAuthorized returns true if current user is authorized to perform this action
type DeletePost ¶ added in v0.15.0
type DeletePost struct { Model *models.DeletePost Post *models.Post }
DeletePost represents the action of an administrator deleting an existing Post
func (*DeletePost) Initialize ¶ added in v0.15.0
func (input *DeletePost) Initialize() interface{}
Initialize the model
func (*DeletePost) IsAuthorized ¶ added in v0.15.0
IsAuthorized returns true if current user is authorized to perform this action
type DeleteTag ¶ added in v0.8.0
DeleteTag is used to delete an existing tag
func (*DeleteTag) Initialize ¶ added in v0.8.0
func (input *DeleteTag) Initialize() interface{}
Initialize the model
func (*DeleteTag) IsAuthorized ¶ added in v0.8.0
IsAuthorized returns true if current user is authorized to perform this action
type EditComment ¶ added in v0.11.0
EditComment represents the action to update an existing comment
func (*EditComment) Initialize ¶ added in v0.11.0
func (input *EditComment) Initialize() interface{}
Initialize the model
func (*EditComment) IsAuthorized ¶ added in v0.11.0
IsAuthorized returns true if current user is authorized to perform this action
type InviteUsers ¶ added in v0.12.0
type InviteUsers struct { IsSampleInvite bool Model *models.InviteUsers Invitations []*models.UserInvitation }
InviteUsers is used to invite new users into Fider
func (*InviteUsers) Initialize ¶ added in v0.12.0
func (input *InviteUsers) Initialize() interface{}
Initialize the model
func (*InviteUsers) IsAuthorized ¶ added in v0.12.0
IsAuthorized returns true if current user is authorized to perform this action
type SetResponse ¶
type SetResponse struct { Model *models.SetResponse Original *models.Post }
SetResponse represents the action to update an post response
func (*SetResponse) Initialize ¶ added in v0.6.0
func (input *SetResponse) Initialize() interface{}
Initialize the model
func (*SetResponse) IsAuthorized ¶
IsAuthorized returns true if current user is authorized to perform this action
type SignInByEmail ¶ added in v0.6.0
type SignInByEmail struct {
Model *models.SignInByEmail
}
SignInByEmail happens when user request to sign in by email
func (*SignInByEmail) Initialize ¶ added in v0.6.0
func (input *SignInByEmail) Initialize() interface{}
Initialize the model
func (*SignInByEmail) IsAuthorized ¶ added in v0.6.0
IsAuthorized returns true if current user is authorized to perform this action
type UpdatePost ¶ added in v0.15.0
type UpdatePost struct { Model *models.UpdatePost Post *models.Post }
UpdatePost is used to edit an existing new post
func (*UpdatePost) Initialize ¶ added in v0.15.0
func (input *UpdatePost) Initialize() interface{}
Initialize the model
func (*UpdatePost) IsAuthorized ¶ added in v0.15.0
IsAuthorized returns true if current user is authorized to perform this action
type UpdateTenantAdvancedSettings ¶ added in v0.13.0
type UpdateTenantAdvancedSettings struct {
Model *models.UpdateTenantAdvancedSettings
}
UpdateTenantAdvancedSettings is the input model used to update tenant advanced settings
func (*UpdateTenantAdvancedSettings) Initialize ¶ added in v0.13.0
func (input *UpdateTenantAdvancedSettings) Initialize() interface{}
Initialize the model
func (*UpdateTenantAdvancedSettings) IsAuthorized ¶ added in v0.13.0
func (input *UpdateTenantAdvancedSettings) IsAuthorized(user *models.User, services *app.Services) bool
IsAuthorized returns true if current user is authorized to perform this action
type UpdateTenantPrivacy ¶ added in v0.12.0
type UpdateTenantPrivacy struct {
Model *models.UpdateTenantPrivacy
}
UpdateTenantPrivacy is the input model used to update tenant privacy settings
func (*UpdateTenantPrivacy) Initialize ¶ added in v0.12.0
func (input *UpdateTenantPrivacy) Initialize() interface{}
Initialize the model
func (*UpdateTenantPrivacy) IsAuthorized ¶ added in v0.12.0
IsAuthorized returns true if current user is authorized to perform this action
type UpdateTenantSettings ¶
type UpdateTenantSettings struct {
Model *models.UpdateTenantSettings
}
UpdateTenantSettings is the input model used to update tenant settings
func (*UpdateTenantSettings) Initialize ¶ added in v0.6.0
func (input *UpdateTenantSettings) Initialize() interface{}
Initialize the model
func (*UpdateTenantSettings) IsAuthorized ¶
IsAuthorized returns true if current user is authorized to perform this action
type UpdateUserSettings ¶ added in v0.6.0
type UpdateUserSettings struct {
Model *models.UpdateUserSettings
}
UpdateUserSettings happens when users updates their settings
func (*UpdateUserSettings) Initialize ¶ added in v0.6.0
func (input *UpdateUserSettings) Initialize() interface{}
Initialize the model
func (*UpdateUserSettings) IsAuthorized ¶ added in v0.6.0
IsAuthorized returns true if current user is authorized to perform this action