action

package
v3.2.0+incompatible Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 29, 2019 License: AGPL-3.0 Imports: 3 Imported by: 3

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Type

type Type int

Type determines type of action that has been requested of a user

const (
	// ActionTypeRead document
	ActionTypeRead Type = 1

	// ActionTypeFeedback for a document
	ActionTypeFeedback Type = 2

	// ActionTypeContribute to document
	ActionTypeContribute Type = 3

	// ActionTypeApprovalRequest for a section change
	ActionTypeApprovalRequest Type = 4

	// ActionTypeApproved section change
	ActionTypeApproved Type = 5

	// ActionTypeRejected section change
	ActionTypeRejected Type = 6

	// ActionTypePublish content as Live
	ActionTypePublish Type = 7
)

type UserAction

type UserAction struct {
	model.BaseEntity
	OrgID       string            `json:"orgId"`
	DocumentID  string            `json:"documentId"`
	UserID      string            `json:"userId"`
	ActionType  Type              `json:"actionType"`
	RefType     string            `json:"refType"`   // page or attachment
	RefTypeID   string            `json:"refTypeId"` // page or attachment ID
	Note        string            `json:"note"`
	RequestorID string            `json:"requestorId"`
	Requested   time.Time         `json:"requestedDate"`
	Due         time.Time         `json:"dueDate"`
	Completed   timeutil.NullTime `json:"completedDate"`
	IsComplete  bool              `json:"isComplete"`
}

UserAction represents an action that a user should perform on a document.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL