projects

package
v0.0.0-...-4ae6852 Latest Latest
Warning

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

Go to latest
Published: Oct 25, 2025 License: AGPL-3.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var CreateProjectForm = Type("CreateProjectForm", func() {
	Required("organization_id", "name")
	security.ByKeyPayload()
	security.SessionPayload()

	Attribute("organization_id", String, "The ID of the organization to create the project in")
	Attribute("name", String, "The name of the project", func() { MaxLength(40) })
})
View Source
var CreateProjectResult = Type("CreateProjectResult", func() {
	Required("project")

	Attribute("project", shared.Project, "The created project")
})
View Source
var ListProjectsPayload = Type("ListProjectsPayload", func() {
	Required("organization_id")
	security.ByKeyPayload()
	security.SessionPayload()

	Attribute("organization_id", String, "The ID of the organization to list projects for")
})
View Source
var ListProjectsResult = Type("ListProjectsResult", func() {
	Required("projects")

	Attribute("projects", ArrayOf(shared.ProjectEntry), "The list of projects")
})
View Source
var SetProjectLogoForm = Type("SetProjectLogoForm", func() {
	Required("asset_id")

	Attribute("asset_id", String, "The ID of the asset")
})
View Source
var SetProjectLogoResult = Type("SetProjectLogoResult", func() {
	Required("project")

	Attribute("project", shared.Project, "The updated project with the new logo")
})

Functions

This section is empty.

Types

This section is empty.

Jump to

Keyboard shortcuts

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