08db4fed61
* API WIP * WIP * Finished changes * Fixed colors: * Don't enforce charset adn collation in migration, pick from database DSN * Added MySQL query * Updated mocks * Added tests * Lint fixes * Fixed typo and removed unsed style * Checked in a snapshot * Updated snapshot * Updated Cypress test * Updated Cypress test * Updated Cypress test * Fixed review comments * Fixed tests * Added default collation for MySQL * Added documentation for ensuring correct database collation * Updated migrations * Fixed a bug with collation * Fixed lint errors * Used correct collation * debugging * Updating css * Minor UI changes * USe inbuilt default collation * Used only charset for mysql * Fixed linter issue: * Added migration for matching collation * Reverted local config changes * Reverted local config changes * Handled the case of personal server running on MySQL * WIP * Now running collation matching migration onlyt for plugins * Minor optimization * Multiple review fixes * Added group by clause to primary query * Supported for subpacth Co-authored-by: Asaad Mahmood <asaadmahmood@users.noreply.github.com>
45 lines
970 B
Go
45 lines
970 B
Go
package model
|
|
|
|
// Workspace is information global to a workspace
|
|
// swagger:model
|
|
type Workspace struct {
|
|
// ID of the workspace
|
|
// required: true
|
|
ID string `json:"id"`
|
|
|
|
// Title of the workspace
|
|
// required: false
|
|
Title string `json:"title"`
|
|
|
|
// Token required to register new users
|
|
// required: true
|
|
SignupToken string `json:"signupToken"`
|
|
|
|
// Workspace settings
|
|
// required: false
|
|
Settings map[string]interface{} `json:"settings"`
|
|
|
|
// ID of user who last modified this
|
|
// required: true
|
|
ModifiedBy string `json:"modifiedBy"`
|
|
|
|
// Updated time
|
|
// required: true
|
|
UpdateAt int64 `json:"updateAt"`
|
|
}
|
|
|
|
// UserWorkspace is a summary of a single association between
|
|
// a user and a workspace
|
|
// swagger:model
|
|
type UserWorkspace struct {
|
|
// ID of the workspace
|
|
// required: true
|
|
ID string `json:"id"`
|
|
|
|
// Title of the workspace
|
|
// required: false
|
|
Title string `json:"title"`
|
|
|
|
// Number of boards in the workspace
|
|
BoardCount int `json:"boardCount"`
|
|
}
|