controllers

package
v0.0.0-...-c24df4f Latest Latest
Warning

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

Go to latest
Published: Nov 20, 2025 License: MIT Imports: 17 Imported by: 0

Documentation

Overview

generated code - do not edit

generated code - do not edit

generated code - do not edit

generated code - do not edit

generated code - do not edit

generated code - do not edit

generated code - do not edit

generated code - do not edit

generated code - do not edit

generated code - do not edit

generated code - do not edit

generated code - do not edit

generated code - do not edit

generated code - do not edit

generated code - do not edit

generated code - do not edit

generated code - do not edit

generated code - do not edit

generated code - do not edit

generated code - do not edit

generated code - do not edit

generated code - do not edit

generated code - do not edit

generated code - do not edit

generated code - do not edit

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Register

func Register(r *gin.Engine)

Types

type CellBooleanID

type CellBooleanID struct {
	// The ID of the order
	//
	// in: path
	// required: true
	ID int64
}

An CellBooleanID parameter model.

This is used for operations that want the ID of an order in the path swagger:parameters getCellBoolean updateCellBoolean deleteCellBoolean

type CellBooleanInput

type CellBooleanInput struct {
	// The CellBoolean to submit or modify
	// in: body
	CellBoolean *orm.CellBooleanAPI
}

CellBooleanInput is a schema that can validate the user’s input to prevent us from getting invalid data swagger:parameters postCellBoolean updateCellBoolean

type CellFloat64ID

type CellFloat64ID struct {
	// The ID of the order
	//
	// in: path
	// required: true
	ID int64
}

An CellFloat64ID parameter model.

This is used for operations that want the ID of an order in the path swagger:parameters getCellFloat64 updateCellFloat64 deleteCellFloat64

type CellFloat64Input

type CellFloat64Input struct {
	// The CellFloat64 to submit or modify
	// in: body
	CellFloat64 *orm.CellFloat64API
}

CellFloat64Input is a schema that can validate the user’s input to prevent us from getting invalid data swagger:parameters postCellFloat64 updateCellFloat64

type CellID

type CellID struct {
	// The ID of the order
	//
	// in: path
	// required: true
	ID int64
}

An CellID parameter model.

This is used for operations that want the ID of an order in the path swagger:parameters getCell updateCell deleteCell

type CellIconID

type CellIconID struct {
	// The ID of the order
	//
	// in: path
	// required: true
	ID int64
}

An CellIconID parameter model.

This is used for operations that want the ID of an order in the path swagger:parameters getCellIcon updateCellIcon deleteCellIcon

type CellIconInput

type CellIconInput struct {
	// The CellIcon to submit or modify
	// in: body
	CellIcon *orm.CellIconAPI
}

CellIconInput is a schema that can validate the user’s input to prevent us from getting invalid data swagger:parameters postCellIcon updateCellIcon

type CellInput

type CellInput struct {
	// The Cell to submit or modify
	// in: body
	Cell *orm.CellAPI
}

CellInput is a schema that can validate the user’s input to prevent us from getting invalid data swagger:parameters postCell updateCell

type CellIntID

type CellIntID struct {
	// The ID of the order
	//
	// in: path
	// required: true
	ID int64
}

An CellIntID parameter model.

This is used for operations that want the ID of an order in the path swagger:parameters getCellInt updateCellInt deleteCellInt

type CellIntInput

type CellIntInput struct {
	// The CellInt to submit or modify
	// in: body
	CellInt *orm.CellIntAPI
}

CellIntInput is a schema that can validate the user’s input to prevent us from getting invalid data swagger:parameters postCellInt updateCellInt

type CellStringID

type CellStringID struct {
	// The ID of the order
	//
	// in: path
	// required: true
	ID int64
}

An CellStringID parameter model.

This is used for operations that want the ID of an order in the path swagger:parameters getCellString updateCellString deleteCellString

type CellStringInput

type CellStringInput struct {
	// The CellString to submit or modify
	// in: body
	CellString *orm.CellStringAPI
}

CellStringInput is a schema that can validate the user’s input to prevent us from getting invalid data swagger:parameters postCellString updateCellString

type CheckBoxID

type CheckBoxID struct {
	// The ID of the order
	//
	// in: path
	// required: true
	ID int64
}

An CheckBoxID parameter model.

This is used for operations that want the ID of an order in the path swagger:parameters getCheckBox updateCheckBox deleteCheckBox

type CheckBoxInput

type CheckBoxInput struct {
	// The CheckBox to submit or modify
	// in: body
	CheckBox *orm.CheckBoxAPI
}

CheckBoxInput is a schema that can validate the user’s input to prevent us from getting invalid data swagger:parameters postCheckBox updateCheckBox

type Controller

type Controller struct {

	// Map_BackRepos is the map to the backRepo instance according to the stack instance path
	Map_BackRepos map[string]*table_orm.BackRepoStruct
	// contains filtered or unexported fields
}

A Controller is the handler of all API REST calls matching the stack model It forwards API requests to the stack instance identified by the Name parameters in the request the stack instance is the BackRepo instance

func GetController

func GetController() *Controller

func (*Controller) AddBackRepo

func (controller *Controller) AddBackRepo(backRepo *table_orm.BackRepoStruct, stackPath string)

func (*Controller) DeleteCell

func (controller *Controller) DeleteCell(c *gin.Context)

DeleteCell

swagger:route DELETE /cells/{ID} cells deleteCell

Delete a cell

default: genericError

200: cellDBResponse

func (*Controller) DeleteCellBoolean

func (controller *Controller) DeleteCellBoolean(c *gin.Context)

DeleteCellBoolean

swagger:route DELETE /cellbooleans/{ID} cellbooleans deleteCellBoolean

Delete a cellboolean

default: genericError

200: cellbooleanDBResponse

func (*Controller) DeleteCellFloat64

func (controller *Controller) DeleteCellFloat64(c *gin.Context)

DeleteCellFloat64

swagger:route DELETE /cellfloat64s/{ID} cellfloat64s deleteCellFloat64

Delete a cellfloat64

default: genericError

200: cellfloat64DBResponse

func (*Controller) DeleteCellIcon

func (controller *Controller) DeleteCellIcon(c *gin.Context)

DeleteCellIcon

swagger:route DELETE /cellicons/{ID} cellicons deleteCellIcon

Delete a cellicon

default: genericError

200: celliconDBResponse

func (*Controller) DeleteCellInt

func (controller *Controller) DeleteCellInt(c *gin.Context)

DeleteCellInt

swagger:route DELETE /cellints/{ID} cellints deleteCellInt

Delete a cellint

default: genericError

200: cellintDBResponse

func (*Controller) DeleteCellString

func (controller *Controller) DeleteCellString(c *gin.Context)

DeleteCellString

swagger:route DELETE /cellstrings/{ID} cellstrings deleteCellString

Delete a cellstring

default: genericError

200: cellstringDBResponse

func (*Controller) DeleteCheckBox

func (controller *Controller) DeleteCheckBox(c *gin.Context)

DeleteCheckBox

swagger:route DELETE /checkboxs/{ID} checkboxs deleteCheckBox

Delete a checkbox

default: genericError

200: checkboxDBResponse

func (*Controller) DeleteDisplayedColumn

func (controller *Controller) DeleteDisplayedColumn(c *gin.Context)

DeleteDisplayedColumn

swagger:route DELETE /displayedcolumns/{ID} displayedcolumns deleteDisplayedColumn

Delete a displayedcolumn

default: genericError

200: displayedcolumnDBResponse

func (*Controller) DeleteFormDiv

func (controller *Controller) DeleteFormDiv(c *gin.Context)

DeleteFormDiv

swagger:route DELETE /formdivs/{ID} formdivs deleteFormDiv

Delete a formdiv

default: genericError

200: formdivDBResponse

func (*Controller) DeleteFormEditAssocButton

func (controller *Controller) DeleteFormEditAssocButton(c *gin.Context)

DeleteFormEditAssocButton

swagger:route DELETE /formeditassocbuttons/{ID} formeditassocbuttons deleteFormEditAssocButton

Delete a formeditassocbutton

default: genericError

200: formeditassocbuttonDBResponse

func (*Controller) DeleteFormField

func (controller *Controller) DeleteFormField(c *gin.Context)

DeleteFormField

swagger:route DELETE /formfields/{ID} formfields deleteFormField

Delete a formfield

default: genericError

200: formfieldDBResponse

func (*Controller) DeleteFormFieldDate

func (controller *Controller) DeleteFormFieldDate(c *gin.Context)

DeleteFormFieldDate

swagger:route DELETE /formfielddates/{ID} formfielddates deleteFormFieldDate

Delete a formfielddate

default: genericError

200: formfielddateDBResponse

func (*Controller) DeleteFormFieldDateTime

func (controller *Controller) DeleteFormFieldDateTime(c *gin.Context)

DeleteFormFieldDateTime

swagger:route DELETE /formfielddatetimes/{ID} formfielddatetimes deleteFormFieldDateTime

Delete a formfielddatetime

default: genericError

200: formfielddatetimeDBResponse

func (*Controller) DeleteFormFieldFloat64

func (controller *Controller) DeleteFormFieldFloat64(c *gin.Context)

DeleteFormFieldFloat64

swagger:route DELETE /formfieldfloat64s/{ID} formfieldfloat64s deleteFormFieldFloat64

Delete a formfieldfloat64

default: genericError

200: formfieldfloat64DBResponse

func (*Controller) DeleteFormFieldInt

func (controller *Controller) DeleteFormFieldInt(c *gin.Context)

DeleteFormFieldInt

swagger:route DELETE /formfieldints/{ID} formfieldints deleteFormFieldInt

Delete a formfieldint

default: genericError

200: formfieldintDBResponse

func (*Controller) DeleteFormFieldSelect

func (controller *Controller) DeleteFormFieldSelect(c *gin.Context)

DeleteFormFieldSelect

swagger:route DELETE /formfieldselects/{ID} formfieldselects deleteFormFieldSelect

Delete a formfieldselect

default: genericError

200: formfieldselectDBResponse

func (*Controller) DeleteFormFieldString

func (controller *Controller) DeleteFormFieldString(c *gin.Context)

DeleteFormFieldString

swagger:route DELETE /formfieldstrings/{ID} formfieldstrings deleteFormFieldString

Delete a formfieldstring

default: genericError

200: formfieldstringDBResponse

func (*Controller) DeleteFormFieldTime

func (controller *Controller) DeleteFormFieldTime(c *gin.Context)

DeleteFormFieldTime

swagger:route DELETE /formfieldtimes/{ID} formfieldtimes deleteFormFieldTime

Delete a formfieldtime

default: genericError

200: formfieldtimeDBResponse

func (*Controller) DeleteFormGroup

func (controller *Controller) DeleteFormGroup(c *gin.Context)

DeleteFormGroup

swagger:route DELETE /formgroups/{ID} formgroups deleteFormGroup

Delete a formgroup

default: genericError

200: formgroupDBResponse

func (*Controller) DeleteFormSortAssocButton

func (controller *Controller) DeleteFormSortAssocButton(c *gin.Context)

DeleteFormSortAssocButton

swagger:route DELETE /formsortassocbuttons/{ID} formsortassocbuttons deleteFormSortAssocButton

Delete a formsortassocbutton

default: genericError

200: formsortassocbuttonDBResponse

func (*Controller) DeleteOption

func (controller *Controller) DeleteOption(c *gin.Context)

DeleteOption

swagger:route DELETE /options/{ID} options deleteOption

Delete a option

default: genericError

200: optionDBResponse

func (*Controller) DeleteRow

func (controller *Controller) DeleteRow(c *gin.Context)

DeleteRow

swagger:route DELETE /rows/{ID} rows deleteRow

Delete a row

default: genericError

200: rowDBResponse

func (*Controller) DeleteTable

func (controller *Controller) DeleteTable(c *gin.Context)

DeleteTable

swagger:route DELETE /tables/{ID} tables deleteTable

Delete a table

default: genericError

200: tableDBResponse

func (*Controller) GetCell

func (controller *Controller) GetCell(c *gin.Context)

GetCell

swagger:route GET /cells/{ID} cells getCell

Gets the details for a cell.

Responses: default: genericError

200: cellDBResponse

func (*Controller) GetCellBoolean

func (controller *Controller) GetCellBoolean(c *gin.Context)

GetCellBoolean

swagger:route GET /cellbooleans/{ID} cellbooleans getCellBoolean

Gets the details for a cellboolean.

Responses: default: genericError

200: cellbooleanDBResponse

func (*Controller) GetCellBooleans

func (controller *Controller) GetCellBooleans(c *gin.Context)

GetCellBooleans

swagger:route GET /cellbooleans cellbooleans getCellBooleans

Get all cellbooleans

Responses: default: genericError

200: cellbooleanDBResponse

func (*Controller) GetCellFloat64

func (controller *Controller) GetCellFloat64(c *gin.Context)

GetCellFloat64

swagger:route GET /cellfloat64s/{ID} cellfloat64s getCellFloat64

Gets the details for a cellfloat64.

Responses: default: genericError

200: cellfloat64DBResponse

func (*Controller) GetCellFloat64s

func (controller *Controller) GetCellFloat64s(c *gin.Context)

GetCellFloat64s

swagger:route GET /cellfloat64s cellfloat64s getCellFloat64s

Get all cellfloat64s

Responses: default: genericError

200: cellfloat64DBResponse

func (*Controller) GetCellIcon

func (controller *Controller) GetCellIcon(c *gin.Context)

GetCellIcon

swagger:route GET /cellicons/{ID} cellicons getCellIcon

Gets the details for a cellicon.

Responses: default: genericError

200: celliconDBResponse

func (*Controller) GetCellIcons

func (controller *Controller) GetCellIcons(c *gin.Context)

GetCellIcons

swagger:route GET /cellicons cellicons getCellIcons

Get all cellicons

Responses: default: genericError

200: celliconDBResponse

func (*Controller) GetCellInt

func (controller *Controller) GetCellInt(c *gin.Context)

GetCellInt

swagger:route GET /cellints/{ID} cellints getCellInt

Gets the details for a cellint.

Responses: default: genericError

200: cellintDBResponse

func (*Controller) GetCellInts

func (controller *Controller) GetCellInts(c *gin.Context)

GetCellInts

swagger:route GET /cellints cellints getCellInts

Get all cellints

Responses: default: genericError

200: cellintDBResponse

func (*Controller) GetCellString

func (controller *Controller) GetCellString(c *gin.Context)

GetCellString

swagger:route GET /cellstrings/{ID} cellstrings getCellString

Gets the details for a cellstring.

Responses: default: genericError

200: cellstringDBResponse

func (*Controller) GetCellStrings

func (controller *Controller) GetCellStrings(c *gin.Context)

GetCellStrings

swagger:route GET /cellstrings cellstrings getCellStrings

Get all cellstrings

Responses: default: genericError

200: cellstringDBResponse

func (*Controller) GetCells

func (controller *Controller) GetCells(c *gin.Context)

GetCells

swagger:route GET /cells cells getCells

Get all cells

Responses: default: genericError

200: cellDBResponse

func (*Controller) GetCheckBox

func (controller *Controller) GetCheckBox(c *gin.Context)

GetCheckBox

swagger:route GET /checkboxs/{ID} checkboxs getCheckBox

Gets the details for a checkbox.

Responses: default: genericError

200: checkboxDBResponse

func (*Controller) GetCheckBoxs

func (controller *Controller) GetCheckBoxs(c *gin.Context)

GetCheckBoxs

swagger:route GET /checkboxs checkboxs getCheckBoxs

Get all checkboxs

Responses: default: genericError

200: checkboxDBResponse

func (*Controller) GetDisplayedColumn

func (controller *Controller) GetDisplayedColumn(c *gin.Context)

GetDisplayedColumn

swagger:route GET /displayedcolumns/{ID} displayedcolumns getDisplayedColumn

Gets the details for a displayedcolumn.

Responses: default: genericError

200: displayedcolumnDBResponse

func (*Controller) GetDisplayedColumns

func (controller *Controller) GetDisplayedColumns(c *gin.Context)

GetDisplayedColumns

swagger:route GET /displayedcolumns displayedcolumns getDisplayedColumns

Get all displayedcolumns

Responses: default: genericError

200: displayedcolumnDBResponse

func (*Controller) GetFormDiv

func (controller *Controller) GetFormDiv(c *gin.Context)

GetFormDiv

swagger:route GET /formdivs/{ID} formdivs getFormDiv

Gets the details for a formdiv.

Responses: default: genericError

200: formdivDBResponse

func (*Controller) GetFormDivs

func (controller *Controller) GetFormDivs(c *gin.Context)

GetFormDivs

swagger:route GET /formdivs formdivs getFormDivs

Get all formdivs

Responses: default: genericError

200: formdivDBResponse

func (*Controller) GetFormEditAssocButton

func (controller *Controller) GetFormEditAssocButton(c *gin.Context)

GetFormEditAssocButton

swagger:route GET /formeditassocbuttons/{ID} formeditassocbuttons getFormEditAssocButton

Gets the details for a formeditassocbutton.

Responses: default: genericError

200: formeditassocbuttonDBResponse

func (*Controller) GetFormEditAssocButtons

func (controller *Controller) GetFormEditAssocButtons(c *gin.Context)

GetFormEditAssocButtons

swagger:route GET /formeditassocbuttons formeditassocbuttons getFormEditAssocButtons

Get all formeditassocbuttons

Responses: default: genericError

200: formeditassocbuttonDBResponse

func (*Controller) GetFormField

func (controller *Controller) GetFormField(c *gin.Context)

GetFormField

swagger:route GET /formfields/{ID} formfields getFormField

Gets the details for a formfield.

Responses: default: genericError

200: formfieldDBResponse

func (*Controller) GetFormFieldDate

func (controller *Controller) GetFormFieldDate(c *gin.Context)

GetFormFieldDate

swagger:route GET /formfielddates/{ID} formfielddates getFormFieldDate

Gets the details for a formfielddate.

Responses: default: genericError

200: formfielddateDBResponse

func (*Controller) GetFormFieldDateTime

func (controller *Controller) GetFormFieldDateTime(c *gin.Context)

GetFormFieldDateTime

swagger:route GET /formfielddatetimes/{ID} formfielddatetimes getFormFieldDateTime

Gets the details for a formfielddatetime.

Responses: default: genericError

200: formfielddatetimeDBResponse

func (*Controller) GetFormFieldDateTimes

func (controller *Controller) GetFormFieldDateTimes(c *gin.Context)

GetFormFieldDateTimes

swagger:route GET /formfielddatetimes formfielddatetimes getFormFieldDateTimes

Get all formfielddatetimes

Responses: default: genericError

200: formfielddatetimeDBResponse

func (*Controller) GetFormFieldDates

func (controller *Controller) GetFormFieldDates(c *gin.Context)

GetFormFieldDates

swagger:route GET /formfielddates formfielddates getFormFieldDates

Get all formfielddates

Responses: default: genericError

200: formfielddateDBResponse

func (*Controller) GetFormFieldFloat64

func (controller *Controller) GetFormFieldFloat64(c *gin.Context)

GetFormFieldFloat64

swagger:route GET /formfieldfloat64s/{ID} formfieldfloat64s getFormFieldFloat64

Gets the details for a formfieldfloat64.

Responses: default: genericError

200: formfieldfloat64DBResponse

func (*Controller) GetFormFieldFloat64s

func (controller *Controller) GetFormFieldFloat64s(c *gin.Context)

GetFormFieldFloat64s

swagger:route GET /formfieldfloat64s formfieldfloat64s getFormFieldFloat64s

Get all formfieldfloat64s

Responses: default: genericError

200: formfieldfloat64DBResponse

func (*Controller) GetFormFieldInt

func (controller *Controller) GetFormFieldInt(c *gin.Context)

GetFormFieldInt

swagger:route GET /formfieldints/{ID} formfieldints getFormFieldInt

Gets the details for a formfieldint.

Responses: default: genericError

200: formfieldintDBResponse

func (*Controller) GetFormFieldInts

func (controller *Controller) GetFormFieldInts(c *gin.Context)

GetFormFieldInts

swagger:route GET /formfieldints formfieldints getFormFieldInts

Get all formfieldints

Responses: default: genericError

200: formfieldintDBResponse

func (*Controller) GetFormFieldSelect

func (controller *Controller) GetFormFieldSelect(c *gin.Context)

GetFormFieldSelect

swagger:route GET /formfieldselects/{ID} formfieldselects getFormFieldSelect

Gets the details for a formfieldselect.

Responses: default: genericError

200: formfieldselectDBResponse

func (*Controller) GetFormFieldSelects

func (controller *Controller) GetFormFieldSelects(c *gin.Context)

GetFormFieldSelects

swagger:route GET /formfieldselects formfieldselects getFormFieldSelects

Get all formfieldselects

Responses: default: genericError

200: formfieldselectDBResponse

func (*Controller) GetFormFieldString

func (controller *Controller) GetFormFieldString(c *gin.Context)

GetFormFieldString

swagger:route GET /formfieldstrings/{ID} formfieldstrings getFormFieldString

Gets the details for a formfieldstring.

Responses: default: genericError

200: formfieldstringDBResponse

func (*Controller) GetFormFieldStrings

func (controller *Controller) GetFormFieldStrings(c *gin.Context)

GetFormFieldStrings

swagger:route GET /formfieldstrings formfieldstrings getFormFieldStrings

Get all formfieldstrings

Responses: default: genericError

200: formfieldstringDBResponse

func (*Controller) GetFormFieldTime

func (controller *Controller) GetFormFieldTime(c *gin.Context)

GetFormFieldTime

swagger:route GET /formfieldtimes/{ID} formfieldtimes getFormFieldTime

Gets the details for a formfieldtime.

Responses: default: genericError

200: formfieldtimeDBResponse

func (*Controller) GetFormFieldTimes

func (controller *Controller) GetFormFieldTimes(c *gin.Context)

GetFormFieldTimes

swagger:route GET /formfieldtimes formfieldtimes getFormFieldTimes

Get all formfieldtimes

Responses: default: genericError

200: formfieldtimeDBResponse

func (*Controller) GetFormFields

func (controller *Controller) GetFormFields(c *gin.Context)

GetFormFields

swagger:route GET /formfields formfields getFormFields

Get all formfields

Responses: default: genericError

200: formfieldDBResponse

func (*Controller) GetFormGroup

func (controller *Controller) GetFormGroup(c *gin.Context)

GetFormGroup

swagger:route GET /formgroups/{ID} formgroups getFormGroup

Gets the details for a formgroup.

Responses: default: genericError

200: formgroupDBResponse

func (*Controller) GetFormGroups

func (controller *Controller) GetFormGroups(c *gin.Context)

GetFormGroups

swagger:route GET /formgroups formgroups getFormGroups

Get all formgroups

Responses: default: genericError

200: formgroupDBResponse

func (*Controller) GetFormSortAssocButton

func (controller *Controller) GetFormSortAssocButton(c *gin.Context)

GetFormSortAssocButton

swagger:route GET /formsortassocbuttons/{ID} formsortassocbuttons getFormSortAssocButton

Gets the details for a formsortassocbutton.

Responses: default: genericError

200: formsortassocbuttonDBResponse

func (*Controller) GetFormSortAssocButtons

func (controller *Controller) GetFormSortAssocButtons(c *gin.Context)

GetFormSortAssocButtons

swagger:route GET /formsortassocbuttons formsortassocbuttons getFormSortAssocButtons

Get all formsortassocbuttons

Responses: default: genericError

200: formsortassocbuttonDBResponse

func (*Controller) GetLastCommitFromBackNb

func (controller *Controller) GetLastCommitFromBackNb(c *gin.Context)

swagger:route GET /commitfrombacknb backrepo GetLastCommitFromBackNb

func (*Controller) GetLastPushFromFrontNb

func (controller *Controller) GetLastPushFromFrontNb(c *gin.Context)

swagger:route GET /pushfromfrontnb backrepo GetLastPushFromFrontNb

func (*Controller) GetOption

func (controller *Controller) GetOption(c *gin.Context)

GetOption

swagger:route GET /options/{ID} options getOption

Gets the details for a option.

Responses: default: genericError

200: optionDBResponse

func (*Controller) GetOptions

func (controller *Controller) GetOptions(c *gin.Context)

GetOptions

swagger:route GET /options options getOptions

Get all options

Responses: default: genericError

200: optionDBResponse

func (*Controller) GetRow

func (controller *Controller) GetRow(c *gin.Context)

GetRow

swagger:route GET /rows/{ID} rows getRow

Gets the details for a row.

Responses: default: genericError

200: rowDBResponse

func (*Controller) GetRows

func (controller *Controller) GetRows(c *gin.Context)

GetRows

swagger:route GET /rows rows getRows

Get all rows

Responses: default: genericError

200: rowDBResponse

func (*Controller) GetTable

func (controller *Controller) GetTable(c *gin.Context)

GetTable

swagger:route GET /tables/{ID} tables getTable

Gets the details for a table.

Responses: default: genericError

200: tableDBResponse

func (*Controller) GetTables

func (controller *Controller) GetTables(c *gin.Context)

GetTables

swagger:route GET /tables tables getTables

Get all tables

Responses: default: genericError

200: tableDBResponse

func (*Controller) PostCell

func (controller *Controller) PostCell(c *gin.Context)

PostCell

swagger:route POST /cells cells postCell

Creates a cell

Consumes:
- application/json

Produces:
- application/json

Responses:
  200: nodeDBResponse

func (*Controller) PostCellBoolean

func (controller *Controller) PostCellBoolean(c *gin.Context)

PostCellBoolean

swagger:route POST /cellbooleans cellbooleans postCellBoolean

Creates a cellboolean

Consumes:
- application/json

Produces:
- application/json

Responses:
  200: nodeDBResponse

func (*Controller) PostCellFloat64

func (controller *Controller) PostCellFloat64(c *gin.Context)

PostCellFloat64

swagger:route POST /cellfloat64s cellfloat64s postCellFloat64

Creates a cellfloat64

Consumes:
- application/json

Produces:
- application/json

Responses:
  200: nodeDBResponse

func (*Controller) PostCellIcon

func (controller *Controller) PostCellIcon(c *gin.Context)

PostCellIcon

swagger:route POST /cellicons cellicons postCellIcon

Creates a cellicon

Consumes:
- application/json

Produces:
- application/json

Responses:
  200: nodeDBResponse

func (*Controller) PostCellInt

func (controller *Controller) PostCellInt(c *gin.Context)

PostCellInt

swagger:route POST /cellints cellints postCellInt

Creates a cellint

Consumes:
- application/json

Produces:
- application/json

Responses:
  200: nodeDBResponse

func (*Controller) PostCellString

func (controller *Controller) PostCellString(c *gin.Context)

PostCellString

swagger:route POST /cellstrings cellstrings postCellString

Creates a cellstring

Consumes:
- application/json

Produces:
- application/json

Responses:
  200: nodeDBResponse

func (*Controller) PostCheckBox

func (controller *Controller) PostCheckBox(c *gin.Context)

PostCheckBox

swagger:route POST /checkboxs checkboxs postCheckBox

Creates a checkbox

Consumes:
- application/json

Produces:
- application/json

Responses:
  200: nodeDBResponse

func (*Controller) PostDisplayedColumn

func (controller *Controller) PostDisplayedColumn(c *gin.Context)

PostDisplayedColumn

swagger:route POST /displayedcolumns displayedcolumns postDisplayedColumn

Creates a displayedcolumn

Consumes:
- application/json

Produces:
- application/json

Responses:
  200: nodeDBResponse

func (*Controller) PostFormDiv

func (controller *Controller) PostFormDiv(c *gin.Context)

PostFormDiv

swagger:route POST /formdivs formdivs postFormDiv

Creates a formdiv

Consumes:
- application/json

Produces:
- application/json

Responses:
  200: nodeDBResponse

func (*Controller) PostFormEditAssocButton

func (controller *Controller) PostFormEditAssocButton(c *gin.Context)

PostFormEditAssocButton

swagger:route POST /formeditassocbuttons formeditassocbuttons postFormEditAssocButton

Creates a formeditassocbutton

Consumes:
- application/json

Produces:
- application/json

Responses:
  200: nodeDBResponse

func (*Controller) PostFormField

func (controller *Controller) PostFormField(c *gin.Context)

PostFormField

swagger:route POST /formfields formfields postFormField

Creates a formfield

Consumes:
- application/json

Produces:
- application/json

Responses:
  200: nodeDBResponse

func (*Controller) PostFormFieldDate

func (controller *Controller) PostFormFieldDate(c *gin.Context)

PostFormFieldDate

swagger:route POST /formfielddates formfielddates postFormFieldDate

Creates a formfielddate

Consumes:
- application/json

Produces:
- application/json

Responses:
  200: nodeDBResponse

func (*Controller) PostFormFieldDateTime

func (controller *Controller) PostFormFieldDateTime(c *gin.Context)

PostFormFieldDateTime

swagger:route POST /formfielddatetimes formfielddatetimes postFormFieldDateTime

Creates a formfielddatetime

Consumes:
- application/json

Produces:
- application/json

Responses:
  200: nodeDBResponse

func (*Controller) PostFormFieldFloat64

func (controller *Controller) PostFormFieldFloat64(c *gin.Context)

PostFormFieldFloat64

swagger:route POST /formfieldfloat64s formfieldfloat64s postFormFieldFloat64

Creates a formfieldfloat64

Consumes:
- application/json

Produces:
- application/json

Responses:
  200: nodeDBResponse

func (*Controller) PostFormFieldInt

func (controller *Controller) PostFormFieldInt(c *gin.Context)

PostFormFieldInt

swagger:route POST /formfieldints formfieldints postFormFieldInt

Creates a formfieldint

Consumes:
- application/json

Produces:
- application/json

Responses:
  200: nodeDBResponse

func (*Controller) PostFormFieldSelect

func (controller *Controller) PostFormFieldSelect(c *gin.Context)

PostFormFieldSelect

swagger:route POST /formfieldselects formfieldselects postFormFieldSelect

Creates a formfieldselect

Consumes:
- application/json

Produces:
- application/json

Responses:
  200: nodeDBResponse

func (*Controller) PostFormFieldString

func (controller *Controller) PostFormFieldString(c *gin.Context)

PostFormFieldString

swagger:route POST /formfieldstrings formfieldstrings postFormFieldString

Creates a formfieldstring

Consumes:
- application/json

Produces:
- application/json

Responses:
  200: nodeDBResponse

func (*Controller) PostFormFieldTime

func (controller *Controller) PostFormFieldTime(c *gin.Context)

PostFormFieldTime

swagger:route POST /formfieldtimes formfieldtimes postFormFieldTime

Creates a formfieldtime

Consumes:
- application/json

Produces:
- application/json

Responses:
  200: nodeDBResponse

func (*Controller) PostFormGroup

func (controller *Controller) PostFormGroup(c *gin.Context)

PostFormGroup

swagger:route POST /formgroups formgroups postFormGroup

Creates a formgroup

Consumes:
- application/json

Produces:
- application/json

Responses:
  200: nodeDBResponse

func (*Controller) PostFormSortAssocButton

func (controller *Controller) PostFormSortAssocButton(c *gin.Context)

PostFormSortAssocButton

swagger:route POST /formsortassocbuttons formsortassocbuttons postFormSortAssocButton

Creates a formsortassocbutton

Consumes:
- application/json

Produces:
- application/json

Responses:
  200: nodeDBResponse

func (*Controller) PostOption

func (controller *Controller) PostOption(c *gin.Context)

PostOption

swagger:route POST /options options postOption

Creates a option

Consumes:
- application/json

Produces:
- application/json

Responses:
  200: nodeDBResponse

func (*Controller) PostRow

func (controller *Controller) PostRow(c *gin.Context)

PostRow

swagger:route POST /rows rows postRow

Creates a row

Consumes:
- application/json

Produces:
- application/json

Responses:
  200: nodeDBResponse

func (*Controller) PostTable

func (controller *Controller) PostTable(c *gin.Context)

PostTable

swagger:route POST /tables tables postTable

Creates a table

Consumes:
- application/json

Produces:
- application/json

Responses:
  200: nodeDBResponse

func (*Controller) UpdateCell

func (controller *Controller) UpdateCell(c *gin.Context)

UpdateCell

swagger:route PATCH /cells/{ID} cells updateCell

Update a cell

Responses: default: genericError

200: cellDBResponse

func (*Controller) UpdateCellBoolean

func (controller *Controller) UpdateCellBoolean(c *gin.Context)

UpdateCellBoolean

swagger:route PATCH /cellbooleans/{ID} cellbooleans updateCellBoolean

Update a cellboolean

Responses: default: genericError

200: cellbooleanDBResponse

func (*Controller) UpdateCellFloat64

func (controller *Controller) UpdateCellFloat64(c *gin.Context)

UpdateCellFloat64

swagger:route PATCH /cellfloat64s/{ID} cellfloat64s updateCellFloat64

Update a cellfloat64

Responses: default: genericError

200: cellfloat64DBResponse

func (*Controller) UpdateCellIcon

func (controller *Controller) UpdateCellIcon(c *gin.Context)

UpdateCellIcon

swagger:route PATCH /cellicons/{ID} cellicons updateCellIcon

Update a cellicon

Responses: default: genericError

200: celliconDBResponse

func (*Controller) UpdateCellInt

func (controller *Controller) UpdateCellInt(c *gin.Context)

UpdateCellInt

swagger:route PATCH /cellints/{ID} cellints updateCellInt

Update a cellint

Responses: default: genericError

200: cellintDBResponse

func (*Controller) UpdateCellString

func (controller *Controller) UpdateCellString(c *gin.Context)

UpdateCellString

swagger:route PATCH /cellstrings/{ID} cellstrings updateCellString

Update a cellstring

Responses: default: genericError

200: cellstringDBResponse

func (*Controller) UpdateCheckBox

func (controller *Controller) UpdateCheckBox(c *gin.Context)

UpdateCheckBox

swagger:route PATCH /checkboxs/{ID} checkboxs updateCheckBox

Update a checkbox

Responses: default: genericError

200: checkboxDBResponse

func (*Controller) UpdateDisplayedColumn

func (controller *Controller) UpdateDisplayedColumn(c *gin.Context)

UpdateDisplayedColumn

swagger:route PATCH /displayedcolumns/{ID} displayedcolumns updateDisplayedColumn

Update a displayedcolumn

Responses: default: genericError

200: displayedcolumnDBResponse

func (*Controller) UpdateFormDiv

func (controller *Controller) UpdateFormDiv(c *gin.Context)

UpdateFormDiv

swagger:route PATCH /formdivs/{ID} formdivs updateFormDiv

Update a formdiv

Responses: default: genericError

200: formdivDBResponse

func (*Controller) UpdateFormEditAssocButton

func (controller *Controller) UpdateFormEditAssocButton(c *gin.Context)

UpdateFormEditAssocButton

swagger:route PATCH /formeditassocbuttons/{ID} formeditassocbuttons updateFormEditAssocButton

Update a formeditassocbutton

Responses: default: genericError

200: formeditassocbuttonDBResponse

func (*Controller) UpdateFormField

func (controller *Controller) UpdateFormField(c *gin.Context)

UpdateFormField

swagger:route PATCH /formfields/{ID} formfields updateFormField

Update a formfield

Responses: default: genericError

200: formfieldDBResponse

func (*Controller) UpdateFormFieldDate

func (controller *Controller) UpdateFormFieldDate(c *gin.Context)

UpdateFormFieldDate

swagger:route PATCH /formfielddates/{ID} formfielddates updateFormFieldDate

Update a formfielddate

Responses: default: genericError

200: formfielddateDBResponse

func (*Controller) UpdateFormFieldDateTime

func (controller *Controller) UpdateFormFieldDateTime(c *gin.Context)

UpdateFormFieldDateTime

swagger:route PATCH /formfielddatetimes/{ID} formfielddatetimes updateFormFieldDateTime

Update a formfielddatetime

Responses: default: genericError

200: formfielddatetimeDBResponse

func (*Controller) UpdateFormFieldFloat64

func (controller *Controller) UpdateFormFieldFloat64(c *gin.Context)

UpdateFormFieldFloat64

swagger:route PATCH /formfieldfloat64s/{ID} formfieldfloat64s updateFormFieldFloat64

Update a formfieldfloat64

Responses: default: genericError

200: formfieldfloat64DBResponse

func (*Controller) UpdateFormFieldInt

func (controller *Controller) UpdateFormFieldInt(c *gin.Context)

UpdateFormFieldInt

swagger:route PATCH /formfieldints/{ID} formfieldints updateFormFieldInt

Update a formfieldint

Responses: default: genericError

200: formfieldintDBResponse

func (*Controller) UpdateFormFieldSelect

func (controller *Controller) UpdateFormFieldSelect(c *gin.Context)

UpdateFormFieldSelect

swagger:route PATCH /formfieldselects/{ID} formfieldselects updateFormFieldSelect

Update a formfieldselect

Responses: default: genericError

200: formfieldselectDBResponse

func (*Controller) UpdateFormFieldString

func (controller *Controller) UpdateFormFieldString(c *gin.Context)

UpdateFormFieldString

swagger:route PATCH /formfieldstrings/{ID} formfieldstrings updateFormFieldString

Update a formfieldstring

Responses: default: genericError

200: formfieldstringDBResponse

func (*Controller) UpdateFormFieldTime

func (controller *Controller) UpdateFormFieldTime(c *gin.Context)

UpdateFormFieldTime

swagger:route PATCH /formfieldtimes/{ID} formfieldtimes updateFormFieldTime

Update a formfieldtime

Responses: default: genericError

200: formfieldtimeDBResponse

func (*Controller) UpdateFormGroup

func (controller *Controller) UpdateFormGroup(c *gin.Context)

UpdateFormGroup

swagger:route PATCH /formgroups/{ID} formgroups updateFormGroup

Update a formgroup

Responses: default: genericError

200: formgroupDBResponse

func (*Controller) UpdateFormSortAssocButton

func (controller *Controller) UpdateFormSortAssocButton(c *gin.Context)

UpdateFormSortAssocButton

swagger:route PATCH /formsortassocbuttons/{ID} formsortassocbuttons updateFormSortAssocButton

Update a formsortassocbutton

Responses: default: genericError

200: formsortassocbuttonDBResponse

func (*Controller) UpdateOption

func (controller *Controller) UpdateOption(c *gin.Context)

UpdateOption

swagger:route PATCH /options/{ID} options updateOption

Update a option

Responses: default: genericError

200: optionDBResponse

func (*Controller) UpdateRow

func (controller *Controller) UpdateRow(c *gin.Context)

UpdateRow

swagger:route PATCH /rows/{ID} rows updateRow

Update a row

Responses: default: genericError

200: rowDBResponse

func (*Controller) UpdateTable

func (controller *Controller) UpdateTable(c *gin.Context)

UpdateTable

swagger:route PATCH /tables/{ID} tables updateTable

Update a table

Responses: default: genericError

200: tableDBResponse

type DisplayedColumnID

type DisplayedColumnID struct {
	// The ID of the order
	//
	// in: path
	// required: true
	ID int64
}

An DisplayedColumnID parameter model.

This is used for operations that want the ID of an order in the path swagger:parameters getDisplayedColumn updateDisplayedColumn deleteDisplayedColumn

type DisplayedColumnInput

type DisplayedColumnInput struct {
	// The DisplayedColumn to submit or modify
	// in: body
	DisplayedColumn *orm.DisplayedColumnAPI
}

DisplayedColumnInput is a schema that can validate the user’s input to prevent us from getting invalid data swagger:parameters postDisplayedColumn updateDisplayedColumn

type FormDivID

type FormDivID struct {
	// The ID of the order
	//
	// in: path
	// required: true
	ID int64
}

An FormDivID parameter model.

This is used for operations that want the ID of an order in the path swagger:parameters getFormDiv updateFormDiv deleteFormDiv

type FormDivInput

type FormDivInput struct {
	// The FormDiv to submit or modify
	// in: body
	FormDiv *orm.FormDivAPI
}

FormDivInput is a schema that can validate the user’s input to prevent us from getting invalid data swagger:parameters postFormDiv updateFormDiv

type FormEditAssocButtonID

type FormEditAssocButtonID struct {
	// The ID of the order
	//
	// in: path
	// required: true
	ID int64
}

An FormEditAssocButtonID parameter model.

This is used for operations that want the ID of an order in the path swagger:parameters getFormEditAssocButton updateFormEditAssocButton deleteFormEditAssocButton

type FormEditAssocButtonInput

type FormEditAssocButtonInput struct {
	// The FormEditAssocButton to submit or modify
	// in: body
	FormEditAssocButton *orm.FormEditAssocButtonAPI
}

FormEditAssocButtonInput is a schema that can validate the user’s input to prevent us from getting invalid data swagger:parameters postFormEditAssocButton updateFormEditAssocButton

type FormFieldDateID

type FormFieldDateID struct {
	// The ID of the order
	//
	// in: path
	// required: true
	ID int64
}

An FormFieldDateID parameter model.

This is used for operations that want the ID of an order in the path swagger:parameters getFormFieldDate updateFormFieldDate deleteFormFieldDate

type FormFieldDateInput

type FormFieldDateInput struct {
	// The FormFieldDate to submit or modify
	// in: body
	FormFieldDate *orm.FormFieldDateAPI
}

FormFieldDateInput is a schema that can validate the user’s input to prevent us from getting invalid data swagger:parameters postFormFieldDate updateFormFieldDate

type FormFieldDateTimeID

type FormFieldDateTimeID struct {
	// The ID of the order
	//
	// in: path
	// required: true
	ID int64
}

An FormFieldDateTimeID parameter model.

This is used for operations that want the ID of an order in the path swagger:parameters getFormFieldDateTime updateFormFieldDateTime deleteFormFieldDateTime

type FormFieldDateTimeInput

type FormFieldDateTimeInput struct {
	// The FormFieldDateTime to submit or modify
	// in: body
	FormFieldDateTime *orm.FormFieldDateTimeAPI
}

FormFieldDateTimeInput is a schema that can validate the user’s input to prevent us from getting invalid data swagger:parameters postFormFieldDateTime updateFormFieldDateTime

type FormFieldFloat64ID

type FormFieldFloat64ID struct {
	// The ID of the order
	//
	// in: path
	// required: true
	ID int64
}

An FormFieldFloat64ID parameter model.

This is used for operations that want the ID of an order in the path swagger:parameters getFormFieldFloat64 updateFormFieldFloat64 deleteFormFieldFloat64

type FormFieldFloat64Input

type FormFieldFloat64Input struct {
	// The FormFieldFloat64 to submit or modify
	// in: body
	FormFieldFloat64 *orm.FormFieldFloat64API
}

FormFieldFloat64Input is a schema that can validate the user’s input to prevent us from getting invalid data swagger:parameters postFormFieldFloat64 updateFormFieldFloat64

type FormFieldID

type FormFieldID struct {
	// The ID of the order
	//
	// in: path
	// required: true
	ID int64
}

An FormFieldID parameter model.

This is used for operations that want the ID of an order in the path swagger:parameters getFormField updateFormField deleteFormField

type FormFieldInput

type FormFieldInput struct {
	// The FormField to submit or modify
	// in: body
	FormField *orm.FormFieldAPI
}

FormFieldInput is a schema that can validate the user’s input to prevent us from getting invalid data swagger:parameters postFormField updateFormField

type FormFieldIntID

type FormFieldIntID struct {
	// The ID of the order
	//
	// in: path
	// required: true
	ID int64
}

An FormFieldIntID parameter model.

This is used for operations that want the ID of an order in the path swagger:parameters getFormFieldInt updateFormFieldInt deleteFormFieldInt

type FormFieldIntInput

type FormFieldIntInput struct {
	// The FormFieldInt to submit or modify
	// in: body
	FormFieldInt *orm.FormFieldIntAPI
}

FormFieldIntInput is a schema that can validate the user’s input to prevent us from getting invalid data swagger:parameters postFormFieldInt updateFormFieldInt

type FormFieldSelectID

type FormFieldSelectID struct {
	// The ID of the order
	//
	// in: path
	// required: true
	ID int64
}

An FormFieldSelectID parameter model.

This is used for operations that want the ID of an order in the path swagger:parameters getFormFieldSelect updateFormFieldSelect deleteFormFieldSelect

type FormFieldSelectInput

type FormFieldSelectInput struct {
	// The FormFieldSelect to submit or modify
	// in: body
	FormFieldSelect *orm.FormFieldSelectAPI
}

FormFieldSelectInput is a schema that can validate the user’s input to prevent us from getting invalid data swagger:parameters postFormFieldSelect updateFormFieldSelect

type FormFieldStringID

type FormFieldStringID struct {
	// The ID of the order
	//
	// in: path
	// required: true
	ID int64
}

An FormFieldStringID parameter model.

This is used for operations that want the ID of an order in the path swagger:parameters getFormFieldString updateFormFieldString deleteFormFieldString

type FormFieldStringInput

type FormFieldStringInput struct {
	// The FormFieldString to submit or modify
	// in: body
	FormFieldString *orm.FormFieldStringAPI
}

FormFieldStringInput is a schema that can validate the user’s input to prevent us from getting invalid data swagger:parameters postFormFieldString updateFormFieldString

type FormFieldTimeID

type FormFieldTimeID struct {
	// The ID of the order
	//
	// in: path
	// required: true
	ID int64
}

An FormFieldTimeID parameter model.

This is used for operations that want the ID of an order in the path swagger:parameters getFormFieldTime updateFormFieldTime deleteFormFieldTime

type FormFieldTimeInput

type FormFieldTimeInput struct {
	// The FormFieldTime to submit or modify
	// in: body
	FormFieldTime *orm.FormFieldTimeAPI
}

FormFieldTimeInput is a schema that can validate the user’s input to prevent us from getting invalid data swagger:parameters postFormFieldTime updateFormFieldTime

type FormGroupID

type FormGroupID struct {
	// The ID of the order
	//
	// in: path
	// required: true
	ID int64
}

An FormGroupID parameter model.

This is used for operations that want the ID of an order in the path swagger:parameters getFormGroup updateFormGroup deleteFormGroup

type FormGroupInput

type FormGroupInput struct {
	// The FormGroup to submit or modify
	// in: body
	FormGroup *orm.FormGroupAPI
}

FormGroupInput is a schema that can validate the user’s input to prevent us from getting invalid data swagger:parameters postFormGroup updateFormGroup

type FormSortAssocButtonID

type FormSortAssocButtonID struct {
	// The ID of the order
	//
	// in: path
	// required: true
	ID int64
}

An FormSortAssocButtonID parameter model.

This is used for operations that want the ID of an order in the path swagger:parameters getFormSortAssocButton updateFormSortAssocButton deleteFormSortAssocButton

type FormSortAssocButtonInput

type FormSortAssocButtonInput struct {
	// The FormSortAssocButton to submit or modify
	// in: body
	FormSortAssocButton *orm.FormSortAssocButtonAPI
}

FormSortAssocButtonInput is a schema that can validate the user’s input to prevent us from getting invalid data swagger:parameters postFormSortAssocButton updateFormSortAssocButton

type GenericError

type GenericError struct {
	// in: body
	Body struct {
		Code    int32  `json:"code"`
		Message string `json:"message"`
	} `json:"body"`
}

A GenericError is the default error message that is generated. For certain status codes there are more appropriate error structures.

swagger:response genericError

type OptionID

type OptionID struct {
	// The ID of the order
	//
	// in: path
	// required: true
	ID int64
}

An OptionID parameter model.

This is used for operations that want the ID of an order in the path swagger:parameters getOption updateOption deleteOption

type OptionInput

type OptionInput struct {
	// The Option to submit or modify
	// in: body
	Option *orm.OptionAPI
}

OptionInput is a schema that can validate the user’s input to prevent us from getting invalid data swagger:parameters postOption updateOption

type RowID

type RowID struct {
	// The ID of the order
	//
	// in: path
	// required: true
	ID int64
}

An RowID parameter model.

This is used for operations that want the ID of an order in the path swagger:parameters getRow updateRow deleteRow

type RowInput

type RowInput struct {
	// The Row to submit or modify
	// in: body
	Row *orm.RowAPI
}

RowInput is a schema that can validate the user’s input to prevent us from getting invalid data swagger:parameters postRow updateRow

type TableID

type TableID struct {
	// The ID of the order
	//
	// in: path
	// required: true
	ID int64
}

An TableID parameter model.

This is used for operations that want the ID of an order in the path swagger:parameters getTable updateTable deleteTable

type TableInput

type TableInput struct {
	// The Table to submit or modify
	// in: body
	Table *orm.TableAPI
}

TableInput is a schema that can validate the user’s input to prevent us from getting invalid data swagger:parameters postTable updateTable

type ValidationError

type ValidationError struct {
	// in: body
	Body struct {
		Code    int32  `json:"code"`
		Message string `json:"message"`
		Field   string `json:"field"`
	} `json:"body"`
}

A ValidationError is an that is generated for validation failures. It has the same fields as a generic error but adds a Field property.

swagger:response validationError

Jump to

Keyboard shortcuts

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