mirror of
https://github.com/hay-kot/homebox.git
synced 2025-02-16 17:37:53 +00:00
audit and update documentation + improve format
This commit is contained in:
parent
9c6421a9ff
commit
ccd40ffcac
20 changed files with 655 additions and 589 deletions
|
@ -75,7 +75,8 @@ func NewControllerV1(svc *services.AllServices, repos *repo.AllRepos, options ..
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleBase godoc
|
// HandleBase godoc
|
||||||
// @Summary Retrieves the basic information about the API
|
//
|
||||||
|
// @Summary Application Info
|
||||||
// @Tags Base
|
// @Tags Base
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Success 200 {object} ApiSummary
|
// @Success 200 {object} ApiSummary
|
||||||
|
@ -84,8 +85,8 @@ func (ctrl *V1Controller) HandleBase(ready ReadyFunc, build Build) server.Handle
|
||||||
return func(w http.ResponseWriter, r *http.Request) error {
|
return func(w http.ResponseWriter, r *http.Request) error {
|
||||||
return server.Respond(w, http.StatusOK, ApiSummary{
|
return server.Respond(w, http.StatusOK, ApiSummary{
|
||||||
Healthy: ready(),
|
Healthy: ready(),
|
||||||
Title: "Go API Template",
|
Title: "Homebox",
|
||||||
Message: "Welcome to the Go API Template Application!",
|
Message: "Track, Manage, and Organize your shit",
|
||||||
Build: build,
|
Build: build,
|
||||||
Demo: ctrl.isDemo,
|
Demo: ctrl.isDemo,
|
||||||
AllowRegistration: ctrl.allowRegistration,
|
AllowRegistration: ctrl.allowRegistration,
|
||||||
|
|
|
@ -29,9 +29,11 @@ func actionHandlerFactory(ref string, fn func(context.Context, uuid.UUID) (int,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleGroupInvitationsCreate godoc
|
// HandleEnsureAssetID godoc
|
||||||
// @Summary Ensures all items in the database have an asset id
|
//
|
||||||
// @Tags Group
|
// @Summary Ensure Asset IDs
|
||||||
|
// @Description Ensures all items in the database have an asset ID
|
||||||
|
// @Tags Actions
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Success 200 {object} ActionAmountResult
|
// @Success 200 {object} ActionAmountResult
|
||||||
// @Router /v1/actions/ensure-asset-ids [Post]
|
// @Router /v1/actions/ensure-asset-ids [Post]
|
||||||
|
@ -41,8 +43,10 @@ func (ctrl *V1Controller) HandleEnsureAssetID() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleEnsureImportRefs godoc
|
// HandleEnsureImportRefs godoc
|
||||||
// @Summary Ensures all items in the database have an import ref
|
//
|
||||||
// @Tags Group
|
// @Summary Ensures Import Refs
|
||||||
|
// @Description Ensures all items in the database have an import ref
|
||||||
|
// @Tags Actions
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Success 200 {object} ActionAmountResult
|
// @Success 200 {object} ActionAmountResult
|
||||||
// @Router /v1/actions/ensure-import-refs [Post]
|
// @Router /v1/actions/ensure-import-refs [Post]
|
||||||
|
@ -52,8 +56,10 @@ func (ctrl *V1Controller) HandleEnsureImportRefs() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleItemDateZeroOut godoc
|
// HandleItemDateZeroOut godoc
|
||||||
// @Summary Resets all item date fields to the beginning of the day
|
//
|
||||||
// @Tags Group
|
// @Summary Zero Out Time Fields
|
||||||
|
// @Description Resets all item date fields to the beginning of the day
|
||||||
|
// @Tags Actions
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Success 200 {object} ActionAmountResult
|
// @Success 200 {object} ActionAmountResult
|
||||||
// @Router /v1/actions/zero-item-time-fields [Post]
|
// @Router /v1/actions/zero-item-time-fields [Post]
|
||||||
|
|
|
@ -14,9 +14,10 @@ import (
|
||||||
"github.com/rs/zerolog/log"
|
"github.com/rs/zerolog/log"
|
||||||
)
|
)
|
||||||
|
|
||||||
// HandleItemGet godocs
|
// HandleAssetGet godocs
|
||||||
// @Summary Gets an item by Asset ID
|
//
|
||||||
// @Tags Assets
|
// @Summary Get Item by Asset ID
|
||||||
|
// @Tags Items
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param id path string true "Asset ID"
|
// @Param id path string true "Asset ID"
|
||||||
// @Success 200 {object} repo.PaginationResult[repo.ItemSummary]{}
|
// @Success 200 {object} repo.PaginationResult[repo.ItemSummary]{}
|
||||||
|
|
|
@ -26,6 +26,7 @@ type (
|
||||||
)
|
)
|
||||||
|
|
||||||
// HandleAuthLogin godoc
|
// HandleAuthLogin godoc
|
||||||
|
//
|
||||||
// @Summary User Login
|
// @Summary User Login
|
||||||
// @Tags Authentication
|
// @Tags Authentication
|
||||||
// @Accept x-www-form-urlencoded
|
// @Accept x-www-form-urlencoded
|
||||||
|
@ -84,6 +85,7 @@ func (ctrl *V1Controller) HandleAuthLogin() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleAuthLogout godoc
|
// HandleAuthLogout godoc
|
||||||
|
//
|
||||||
// @Summary User Logout
|
// @Summary User Logout
|
||||||
// @Tags Authentication
|
// @Tags Authentication
|
||||||
// @Success 204
|
// @Success 204
|
||||||
|
@ -106,6 +108,7 @@ func (ctrl *V1Controller) HandleAuthLogout() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleAuthLogout godoc
|
// HandleAuthLogout godoc
|
||||||
|
//
|
||||||
// @Summary User Token Refresh
|
// @Summary User Token Refresh
|
||||||
// @Description handleAuthRefresh returns a handler that will issue a new token from an existing token.
|
// @Description handleAuthRefresh returns a handler that will issue a new token from an existing token.
|
||||||
// @Description This does not validate that the user still exists within the database.
|
// @Description This does not validate that the user still exists within the database.
|
||||||
|
|
|
@ -25,7 +25,8 @@ type (
|
||||||
)
|
)
|
||||||
|
|
||||||
// HandleGroupGet godoc
|
// HandleGroupGet godoc
|
||||||
// @Summary Get the current user's group
|
//
|
||||||
|
// @Summary Get Group
|
||||||
// @Tags Group
|
// @Tags Group
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Success 200 {object} repo.Group
|
// @Success 200 {object} repo.Group
|
||||||
|
@ -36,7 +37,8 @@ func (ctrl *V1Controller) HandleGroupGet() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleGroupUpdate godoc
|
// HandleGroupUpdate godoc
|
||||||
// @Summary Updates some fields of the current users group
|
//
|
||||||
|
// @Summary Update Group
|
||||||
// @Tags Group
|
// @Tags Group
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param payload body repo.GroupUpdate true "User Data"
|
// @Param payload body repo.GroupUpdate true "User Data"
|
||||||
|
@ -81,7 +83,8 @@ func (ctrl *V1Controller) handleGroupGeneral() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleGroupInvitationsCreate godoc
|
// HandleGroupInvitationsCreate godoc
|
||||||
// @Summary Get the current user
|
//
|
||||||
|
// @Summary Create Group Invitation
|
||||||
// @Tags Group
|
// @Tags Group
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param payload body GroupInvitationCreate true "User Data"
|
// @Param payload body GroupInvitationCreate true "User Data"
|
||||||
|
|
|
@ -15,7 +15,8 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
// HandleItemsGetAll godoc
|
// HandleItemsGetAll godoc
|
||||||
// @Summary Get All Items
|
//
|
||||||
|
// @Summary Query All Items
|
||||||
// @Tags Items
|
// @Tags Items
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param q query string false "search string"
|
// @Param q query string false "search string"
|
||||||
|
@ -87,7 +88,8 @@ func (ctrl *V1Controller) HandleItemsGetAll() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleItemsCreate godoc
|
// HandleItemsCreate godoc
|
||||||
// @Summary Create a new item
|
//
|
||||||
|
// @Summary Create Item
|
||||||
// @Tags Items
|
// @Tags Items
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param payload body repo.ItemCreate true "Item Data"
|
// @Param payload body repo.ItemCreate true "Item Data"
|
||||||
|
@ -114,7 +116,8 @@ func (ctrl *V1Controller) HandleItemsCreate() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleItemGet godocs
|
// HandleItemGet godocs
|
||||||
// @Summary Gets a item and fields
|
//
|
||||||
|
// @Summary Get Item
|
||||||
// @Tags Items
|
// @Tags Items
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param id path string true "Item ID"
|
// @Param id path string true "Item ID"
|
||||||
|
@ -126,7 +129,8 @@ func (ctrl *V1Controller) HandleItemGet() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleItemDelete godocs
|
// HandleItemDelete godocs
|
||||||
// @Summary deletes a item
|
//
|
||||||
|
// @Summary Delete Item
|
||||||
// @Tags Items
|
// @Tags Items
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param id path string true "Item ID"
|
// @Param id path string true "Item ID"
|
||||||
|
@ -138,7 +142,8 @@ func (ctrl *V1Controller) HandleItemDelete() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleItemUpdate godocs
|
// HandleItemUpdate godocs
|
||||||
// @Summary updates a item
|
//
|
||||||
|
// @Summary Update Item
|
||||||
// @Tags Items
|
// @Tags Items
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param id path string true "Item ID"
|
// @Param id path string true "Item ID"
|
||||||
|
@ -193,7 +198,8 @@ func (ctrl *V1Controller) handleItemsGeneral() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleGetAllCustomFieldNames godocs
|
// HandleGetAllCustomFieldNames godocs
|
||||||
// @Summary imports items into the database
|
//
|
||||||
|
// @Summary Get All Custom Field Names
|
||||||
// @Tags Items
|
// @Tags Items
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Success 200
|
// @Success 200
|
||||||
|
@ -214,7 +220,8 @@ func (ctrl *V1Controller) HandleGetAllCustomFieldNames() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleGetAllCustomFieldValues godocs
|
// HandleGetAllCustomFieldValues godocs
|
||||||
// @Summary imports items into the database
|
//
|
||||||
|
// @Summary Get All Custom Field Values
|
||||||
// @Tags Items
|
// @Tags Items
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Success 200
|
// @Success 200
|
||||||
|
@ -235,7 +242,8 @@ func (ctrl *V1Controller) HandleGetAllCustomFieldValues() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleItemsImport godocs
|
// HandleItemsImport godocs
|
||||||
// @Summary imports items into the database
|
//
|
||||||
|
// @Summary Import Items
|
||||||
// @Tags Items
|
// @Tags Items
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Success 204
|
// @Success 204
|
||||||
|
@ -268,8 +276,9 @@ func (ctrl *V1Controller) HandleItemsImport() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleItemsImport godocs
|
// HandleItemsExport godocs
|
||||||
// @Summary exports items into the database
|
//
|
||||||
|
// @Summary Export Items
|
||||||
// @Tags Items
|
// @Tags Items
|
||||||
// @Success 200 {string} string "text/csv"
|
// @Success 200 {string} string "text/csv"
|
||||||
// @Router /v1/items/export [GET]
|
// @Router /v1/items/export [GET]
|
||||||
|
|
|
@ -18,8 +18,9 @@ type (
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
// HandleItemsImport godocs
|
// HandleItemAttachmentCreate godocs
|
||||||
// @Summary imports items into the database
|
//
|
||||||
|
// @Summary Create Item Attachment
|
||||||
// @Tags Items Attachments
|
// @Tags Items Attachments
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param id path string true "Item ID"
|
// @Param id path string true "Item ID"
|
||||||
|
@ -92,7 +93,8 @@ func (ctrl *V1Controller) HandleItemAttachmentCreate() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleItemAttachmentGet godocs
|
// HandleItemAttachmentGet godocs
|
||||||
// @Summary retrieves an attachment for an item
|
//
|
||||||
|
// @Summary Get Item Attachment
|
||||||
// @Tags Items Attachments
|
// @Tags Items Attachments
|
||||||
// @Produce application/octet-stream
|
// @Produce application/octet-stream
|
||||||
// @Param id path string true "Item ID"
|
// @Param id path string true "Item ID"
|
||||||
|
@ -105,7 +107,8 @@ func (ctrl *V1Controller) HandleItemAttachmentGet() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleItemAttachmentDelete godocs
|
// HandleItemAttachmentDelete godocs
|
||||||
// @Summary retrieves an attachment for an item
|
//
|
||||||
|
// @Summary Delete Item Attachment
|
||||||
// @Tags Items Attachments
|
// @Tags Items Attachments
|
||||||
// @Param id path string true "Item ID"
|
// @Param id path string true "Item ID"
|
||||||
// @Param attachment_id path string true "Attachment ID"
|
// @Param attachment_id path string true "Attachment ID"
|
||||||
|
@ -117,7 +120,8 @@ func (ctrl *V1Controller) HandleItemAttachmentDelete() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleItemAttachmentUpdate godocs
|
// HandleItemAttachmentUpdate godocs
|
||||||
// @Summary retrieves an attachment for an item
|
//
|
||||||
|
// @Summary Update Item Attachment
|
||||||
// @Tags Items Attachments
|
// @Tags Items Attachments
|
||||||
// @Param id path string true "Item ID"
|
// @Param id path string true "Item ID"
|
||||||
// @Param attachment_id path string true "Attachment ID"
|
// @Param attachment_id path string true "Attachment ID"
|
||||||
|
|
|
@ -12,6 +12,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
// HandleLabelsGetAll godoc
|
// HandleLabelsGetAll godoc
|
||||||
|
//
|
||||||
// @Summary Get All Labels
|
// @Summary Get All Labels
|
||||||
// @Tags Labels
|
// @Tags Labels
|
||||||
// @Produce json
|
// @Produce json
|
||||||
|
@ -31,7 +32,8 @@ func (ctrl *V1Controller) HandleLabelsGetAll() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleLabelsCreate godoc
|
// HandleLabelsCreate godoc
|
||||||
// @Summary Create a new label
|
//
|
||||||
|
// @Summary Create Label
|
||||||
// @Tags Labels
|
// @Tags Labels
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param payload body repo.LabelCreate true "Label Data"
|
// @Param payload body repo.LabelCreate true "Label Data"
|
||||||
|
@ -58,7 +60,8 @@ func (ctrl *V1Controller) HandleLabelsCreate() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleLabelDelete godocs
|
// HandleLabelDelete godocs
|
||||||
// @Summary deletes a label
|
//
|
||||||
|
// @Summary Delete Label
|
||||||
// @Tags Labels
|
// @Tags Labels
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param id path string true "Label ID"
|
// @Param id path string true "Label ID"
|
||||||
|
@ -70,7 +73,8 @@ func (ctrl *V1Controller) HandleLabelDelete() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleLabelGet godocs
|
// HandleLabelGet godocs
|
||||||
// @Summary Gets a label and fields
|
//
|
||||||
|
// @Summary Get Label
|
||||||
// @Tags Labels
|
// @Tags Labels
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param id path string true "Label ID"
|
// @Param id path string true "Label ID"
|
||||||
|
@ -82,7 +86,8 @@ func (ctrl *V1Controller) HandleLabelGet() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleLabelUpdate godocs
|
// HandleLabelUpdate godocs
|
||||||
// @Summary updates a label
|
//
|
||||||
|
// @Summary Update Label
|
||||||
// @Tags Labels
|
// @Tags Labels
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param id path string true "Label ID"
|
// @Param id path string true "Label ID"
|
||||||
|
|
|
@ -12,7 +12,8 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
// HandleLocationTreeQuery godoc
|
// HandleLocationTreeQuery godoc
|
||||||
// @Summary Get All Locations
|
//
|
||||||
|
// @Summary Get Locations Tree
|
||||||
// @Tags Locations
|
// @Tags Locations
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param withItems query bool false "include items in response tree"
|
// @Param withItems query bool false "include items in response tree"
|
||||||
|
@ -44,6 +45,7 @@ func (ctrl *V1Controller) HandleLocationTreeQuery() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleLocationGetAll godoc
|
// HandleLocationGetAll godoc
|
||||||
|
//
|
||||||
// @Summary Get All Locations
|
// @Summary Get All Locations
|
||||||
// @Tags Locations
|
// @Tags Locations
|
||||||
// @Produce json
|
// @Produce json
|
||||||
|
@ -72,7 +74,8 @@ func (ctrl *V1Controller) HandleLocationGetAll() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleLocationCreate godoc
|
// HandleLocationCreate godoc
|
||||||
// @Summary Create a new location
|
//
|
||||||
|
// @Summary Create Location
|
||||||
// @Tags Locations
|
// @Tags Locations
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param payload body repo.LocationCreate true "Location Data"
|
// @Param payload body repo.LocationCreate true "Location Data"
|
||||||
|
@ -99,7 +102,8 @@ func (ctrl *V1Controller) HandleLocationCreate() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleLocationDelete godocs
|
// HandleLocationDelete godocs
|
||||||
// @Summary deletes a location
|
//
|
||||||
|
// @Summary Delete Location
|
||||||
// @Tags Locations
|
// @Tags Locations
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param id path string true "Location ID"
|
// @Param id path string true "Location ID"
|
||||||
|
@ -111,7 +115,8 @@ func (ctrl *V1Controller) HandleLocationDelete() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleLocationGet godocs
|
// HandleLocationGet godocs
|
||||||
// @Summary Gets a location and fields
|
//
|
||||||
|
// @Summary Get Location
|
||||||
// @Tags Locations
|
// @Tags Locations
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param id path string true "Location ID"
|
// @Param id path string true "Location ID"
|
||||||
|
@ -123,7 +128,8 @@ func (ctrl *V1Controller) HandleLocationGet() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleLocationUpdate godocs
|
// HandleLocationUpdate godocs
|
||||||
// @Summary updates a location
|
//
|
||||||
|
// @Summary Update Location
|
||||||
// @Tags Locations
|
// @Tags Locations
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param id path string true "Location ID"
|
// @Param id path string true "Location ID"
|
||||||
|
|
|
@ -12,6 +12,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
// HandleMaintenanceGetLog godoc
|
// HandleMaintenanceGetLog godoc
|
||||||
|
//
|
||||||
// @Summary Get Maintenance Log
|
// @Summary Get Maintenance Log
|
||||||
// @Tags Maintenance
|
// @Tags Maintenance
|
||||||
// @Produce json
|
// @Produce json
|
||||||
|
@ -23,6 +24,7 @@ func (ctrl *V1Controller) HandleMaintenanceLogGet() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleMaintenanceEntryCreate godoc
|
// HandleMaintenanceEntryCreate godoc
|
||||||
|
//
|
||||||
// @Summary Create Maintenance Entry
|
// @Summary Create Maintenance Entry
|
||||||
// @Tags Maintenance
|
// @Tags Maintenance
|
||||||
// @Produce json
|
// @Produce json
|
||||||
|
@ -35,6 +37,7 @@ func (ctrl *V1Controller) HandleMaintenanceEntryCreate() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleMaintenanceEntryDelete godoc
|
// HandleMaintenanceEntryDelete godoc
|
||||||
|
//
|
||||||
// @Summary Delete Maintenance Entry
|
// @Summary Delete Maintenance Entry
|
||||||
// @Tags Maintenance
|
// @Tags Maintenance
|
||||||
// @Produce json
|
// @Produce json
|
||||||
|
@ -46,6 +49,7 @@ func (ctrl *V1Controller) HandleMaintenanceEntryDelete() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleMaintenanceEntryUpdate godoc
|
// HandleMaintenanceEntryUpdate godoc
|
||||||
|
//
|
||||||
// @Summary Update Maintenance Entry
|
// @Summary Update Maintenance Entry
|
||||||
// @Tags Maintenance
|
// @Tags Maintenance
|
||||||
// @Produce json
|
// @Produce json
|
||||||
|
|
|
@ -13,7 +13,8 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
// HandleGetUserNotifiers godoc
|
// HandleGetUserNotifiers godoc
|
||||||
// @Summary Get All notifier
|
//
|
||||||
|
// @Summary Get Notifiers
|
||||||
// @Tags Notifiers
|
// @Tags Notifiers
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Success 200 {object} server.Results{items=[]repo.NotifierOut}
|
// @Success 200 {object} server.Results{items=[]repo.NotifierOut}
|
||||||
|
@ -29,7 +30,8 @@ func (ctrl *V1Controller) HandleGetUserNotifiers() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleCreateNotifier godoc
|
// HandleCreateNotifier godoc
|
||||||
// @Summary Create a new notifier
|
//
|
||||||
|
// @Summary Create Notifier
|
||||||
// @Tags Notifiers
|
// @Tags Notifiers
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param payload body repo.NotifierCreate true "Notifier Data"
|
// @Param payload body repo.NotifierCreate true "Notifier Data"
|
||||||
|
@ -46,7 +48,8 @@ func (ctrl *V1Controller) HandleCreateNotifier() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleDeleteNotifier godocs
|
// HandleDeleteNotifier godocs
|
||||||
// @Summary Delete a notifier
|
//
|
||||||
|
// @Summary Delete a Notifier
|
||||||
// @Tags Notifiers
|
// @Tags Notifiers
|
||||||
// @Param id path string true "Notifier ID"
|
// @Param id path string true "Notifier ID"
|
||||||
// @Success 204
|
// @Success 204
|
||||||
|
@ -62,7 +65,8 @@ func (ctrl *V1Controller) HandleDeleteNotifier() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleUpdateNotifier godocs
|
// HandleUpdateNotifier godocs
|
||||||
// @Summary Update a notifier
|
//
|
||||||
|
// @Summary Update Notifier
|
||||||
// @Tags Notifiers
|
// @Tags Notifiers
|
||||||
// @Param id path string true "Notifier ID"
|
// @Param id path string true "Notifier ID"
|
||||||
// @Param payload body repo.NotifierUpdate true "Notifier Data"
|
// @Param payload body repo.NotifierUpdate true "Notifier Data"
|
||||||
|
@ -79,7 +83,8 @@ func (ctrl *V1Controller) HandleUpdateNotifier() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandlerNotifierTest godoc
|
// HandlerNotifierTest godoc
|
||||||
// @Summary Test notifier
|
//
|
||||||
|
// @Summary Test Notifier
|
||||||
// @Tags Notifiers
|
// @Tags Notifiers
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param id path string true "Notifier ID"
|
// @Param id path string true "Notifier ID"
|
||||||
|
|
|
@ -19,7 +19,7 @@ var qrcodeLogo []byte
|
||||||
|
|
||||||
// HandleGenerateQRCode godoc
|
// HandleGenerateQRCode godoc
|
||||||
//
|
//
|
||||||
// @Summary Encode data into QRCode
|
// @Summary Create QR Code
|
||||||
// @Tags Items
|
// @Tags Items
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param data query string false "data to be encoded into qrcode"
|
// @Param data query string false "data to be encoded into qrcode"
|
||||||
|
|
|
@ -9,7 +9,7 @@ import (
|
||||||
|
|
||||||
// HandleBillOfMaterialsExport godoc
|
// HandleBillOfMaterialsExport godoc
|
||||||
//
|
//
|
||||||
// @Summary Generates a Bill of Materials CSV
|
// @Summary Export Bill of Materials
|
||||||
// @Tags Reporting
|
// @Tags Reporting
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Success 200 {string} string "text/csv"
|
// @Success 200 {string} string "text/csv"
|
||||||
|
|
|
@ -10,7 +10,8 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
// HandleGroupGet godoc
|
// HandleGroupGet godoc
|
||||||
// @Summary Get the current user's group statistics
|
//
|
||||||
|
// @Summary Get Location Statistics
|
||||||
// @Tags Statistics
|
// @Tags Statistics
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Success 200 {object} []repo.TotalsByOrganizer
|
// @Success 200 {object} []repo.TotalsByOrganizer
|
||||||
|
@ -29,8 +30,9 @@ func (ctrl *V1Controller) HandleGroupStatisticsLocations() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleGroupGet godoc
|
// HandleGroupStatisticsLabels godoc
|
||||||
// @Summary Get the current user's group statistics
|
//
|
||||||
|
// @Summary Get Label Statistics
|
||||||
// @Tags Statistics
|
// @Tags Statistics
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Success 200 {object} []repo.TotalsByOrganizer
|
// @Success 200 {object} []repo.TotalsByOrganizer
|
||||||
|
@ -49,8 +51,9 @@ func (ctrl *V1Controller) HandleGroupStatisticsLabels() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleGroupGet godoc
|
// HandleGroupStatistics godoc
|
||||||
// @Summary Get the current user's group statistics
|
//
|
||||||
|
// @Summary Get Group Statistics
|
||||||
// @Tags Statistics
|
// @Tags Statistics
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Success 200 {object} repo.GroupStatistics
|
// @Success 200 {object} repo.GroupStatistics
|
||||||
|
@ -69,8 +72,9 @@ func (ctrl *V1Controller) HandleGroupStatistics() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleGroupGet godoc
|
// HandleGroupStatisticsPriceOverTime godoc
|
||||||
// @Summary Queries the changes overtime of the purchase price over time
|
//
|
||||||
|
// @Summary Get Purchase Price Statistics
|
||||||
// @Tags Statistics
|
// @Tags Statistics
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Success 200 {object} repo.ValueOverTime
|
// @Success 200 {object} repo.ValueOverTime
|
||||||
|
|
|
@ -12,8 +12,9 @@ import (
|
||||||
"github.com/rs/zerolog/log"
|
"github.com/rs/zerolog/log"
|
||||||
)
|
)
|
||||||
|
|
||||||
// HandleUserSelf godoc
|
// HandleUserRegistration godoc
|
||||||
// @Summary Get the current user
|
//
|
||||||
|
// @Summary Register New User
|
||||||
// @Tags User
|
// @Tags User
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param payload body services.UserRegistration true "User Data"
|
// @Param payload body services.UserRegistration true "User Data"
|
||||||
|
@ -43,7 +44,8 @@ func (ctrl *V1Controller) HandleUserRegistration() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleUserSelf godoc
|
// HandleUserSelf godoc
|
||||||
// @Summary Get the current user
|
//
|
||||||
|
// @Summary Get User Self
|
||||||
// @Tags User
|
// @Tags User
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Success 200 {object} server.Result{item=repo.UserOut}
|
// @Success 200 {object} server.Result{item=repo.UserOut}
|
||||||
|
@ -63,7 +65,8 @@ func (ctrl *V1Controller) HandleUserSelf() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleUserSelfUpdate godoc
|
// HandleUserSelfUpdate godoc
|
||||||
// @Summary Update the current user
|
//
|
||||||
|
// @Summary Update Account
|
||||||
// @Tags User
|
// @Tags User
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Param payload body repo.UserUpdate true "User Data"
|
// @Param payload body repo.UserUpdate true "User Data"
|
||||||
|
@ -89,7 +92,8 @@ func (ctrl *V1Controller) HandleUserSelfUpdate() server.HandlerFunc {
|
||||||
}
|
}
|
||||||
|
|
||||||
// HandleUserSelfDelete godoc
|
// HandleUserSelfDelete godoc
|
||||||
// @Summary Deletes the user account
|
//
|
||||||
|
// @Summary Delete Account
|
||||||
// @Tags User
|
// @Tags User
|
||||||
// @Produce json
|
// @Produce json
|
||||||
// @Success 204
|
// @Success 204
|
||||||
|
@ -118,7 +122,8 @@ type (
|
||||||
)
|
)
|
||||||
|
|
||||||
// HandleUserSelfChangePassword godoc
|
// HandleUserSelfChangePassword godoc
|
||||||
// @Summary Updates the users password
|
//
|
||||||
|
// @Summary Change Password
|
||||||
// @Tags User
|
// @Tags User
|
||||||
// @Success 204
|
// @Success 204
|
||||||
// @Param payload body ChangePassword true "Password Payload"
|
// @Param payload body ChangePassword true "Password Payload"
|
||||||
|
|
|
@ -27,9 +27,9 @@ var (
|
||||||
buildTime = "now"
|
buildTime = "now"
|
||||||
)
|
)
|
||||||
|
|
||||||
// @title Go API Templates
|
// @title Homebox API
|
||||||
// @version 1.0
|
// @version 1.0
|
||||||
// @description This is a simple Rest API Server Template that implements some basic User and Authentication patterns to help you get started and bootstrap your next project!.
|
// @description Track, Manage, and Organize your Shit.
|
||||||
// @contact.name Don't
|
// @contact.name Don't
|
||||||
// @license.name MIT
|
// @license.name MIT
|
||||||
// @BasePath /api
|
// @BasePath /api
|
||||||
|
|
|
@ -28,13 +28,14 @@ const docTemplate = `{
|
||||||
"Bearer": []
|
"Bearer": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"description": "Ensures all items in the database have an asset ID",
|
||||||
"produces": [
|
"produces": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"Group"
|
"Actions"
|
||||||
],
|
],
|
||||||
"summary": "Ensures all items in the database have an asset id",
|
"summary": "Ensure Asset IDs",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -52,13 +53,14 @@ const docTemplate = `{
|
||||||
"Bearer": []
|
"Bearer": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"description": "Ensures all items in the database have an import ref",
|
||||||
"produces": [
|
"produces": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"Group"
|
"Actions"
|
||||||
],
|
],
|
||||||
"summary": "Ensures all items in the database have an import ref",
|
"summary": "Ensures Import Refs",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -76,13 +78,14 @@ const docTemplate = `{
|
||||||
"Bearer": []
|
"Bearer": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"description": "Resets all item date fields to the beginning of the day",
|
||||||
"produces": [
|
"produces": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"Group"
|
"Actions"
|
||||||
],
|
],
|
||||||
"summary": "Resets all item date fields to the beginning of the day",
|
"summary": "Zero Out Time Fields",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -104,9 +107,9 @@ const docTemplate = `{
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"Assets"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "Gets an item by Asset ID",
|
"summary": "Get Item by Asset ID",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -139,7 +142,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Group"
|
"Group"
|
||||||
],
|
],
|
||||||
"summary": "Get the current user's group",
|
"summary": "Get Group",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -161,7 +164,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Group"
|
"Group"
|
||||||
],
|
],
|
||||||
"summary": "Updates some fields of the current users group",
|
"summary": "Update Group",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "User Data",
|
"description": "User Data",
|
||||||
|
@ -196,7 +199,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Group"
|
"Group"
|
||||||
],
|
],
|
||||||
"summary": "Get the current user",
|
"summary": "Create Group Invitation",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "User Data",
|
"description": "User Data",
|
||||||
|
@ -231,7 +234,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Statistics"
|
"Statistics"
|
||||||
],
|
],
|
||||||
"summary": "Get the current user's group statistics",
|
"summary": "Get Group Statistics",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -255,7 +258,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Statistics"
|
"Statistics"
|
||||||
],
|
],
|
||||||
"summary": "Get the current user's group statistics",
|
"summary": "Get Label Statistics",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -282,7 +285,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Statistics"
|
"Statistics"
|
||||||
],
|
],
|
||||||
"summary": "Get the current user's group statistics",
|
"summary": "Get Location Statistics",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -309,7 +312,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Statistics"
|
"Statistics"
|
||||||
],
|
],
|
||||||
"summary": "Queries the changes overtime of the purchase price over time",
|
"summary": "Get Purchase Price Statistics",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -347,7 +350,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "Get All Items",
|
"summary": "Query All Items",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -409,7 +412,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "Create a new item",
|
"summary": "Create Item",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "Item Data",
|
"description": "Item Data",
|
||||||
|
@ -441,7 +444,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "exports items into the database",
|
"summary": "Export Items",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "text/csv",
|
"description": "text/csv",
|
||||||
|
@ -465,7 +468,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "imports items into the database",
|
"summary": "Get All Custom Field Names",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -492,7 +495,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "imports items into the database",
|
"summary": "Get All Custom Field Values",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -519,7 +522,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "imports items into the database",
|
"summary": "Import Items",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "file",
|
"type": "file",
|
||||||
|
@ -549,7 +552,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "Gets a item and fields",
|
"summary": "Get Item",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -580,7 +583,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "updates a item",
|
"summary": "Update Item",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -620,7 +623,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "deletes a item",
|
"summary": "Delete Item",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -650,7 +653,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items Attachments"
|
"Items Attachments"
|
||||||
],
|
],
|
||||||
"summary": "imports items into the database",
|
"summary": "Create Item Attachment",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -710,7 +713,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items Attachments"
|
"Items Attachments"
|
||||||
],
|
],
|
||||||
"summary": "retrieves an attachment for an item",
|
"summary": "Get Item Attachment",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -745,7 +748,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items Attachments"
|
"Items Attachments"
|
||||||
],
|
],
|
||||||
"summary": "retrieves an attachment for an item",
|
"summary": "Update Item Attachment",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -789,7 +792,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items Attachments"
|
"Items Attachments"
|
||||||
],
|
],
|
||||||
"summary": "retrieves an attachment for an item",
|
"summary": "Delete Item Attachment",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -974,7 +977,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Labels"
|
"Labels"
|
||||||
],
|
],
|
||||||
"summary": "Create a new label",
|
"summary": "Create Label",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "Label Data",
|
"description": "Label Data",
|
||||||
|
@ -1009,7 +1012,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Labels"
|
"Labels"
|
||||||
],
|
],
|
||||||
"summary": "Gets a label and fields",
|
"summary": "Get Label",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -1040,7 +1043,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Labels"
|
"Labels"
|
||||||
],
|
],
|
||||||
"summary": "updates a label",
|
"summary": "Update Label",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -1071,7 +1074,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Labels"
|
"Labels"
|
||||||
],
|
],
|
||||||
"summary": "deletes a label",
|
"summary": "Delete Label",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -1146,7 +1149,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Locations"
|
"Locations"
|
||||||
],
|
],
|
||||||
"summary": "Create a new location",
|
"summary": "Create Location",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "Location Data",
|
"description": "Location Data",
|
||||||
|
@ -1181,7 +1184,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Locations"
|
"Locations"
|
||||||
],
|
],
|
||||||
"summary": "Get All Locations",
|
"summary": "Get Locations Tree",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
|
@ -1228,7 +1231,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Locations"
|
"Locations"
|
||||||
],
|
],
|
||||||
"summary": "Gets a location and fields",
|
"summary": "Get Location",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -1259,7 +1262,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Locations"
|
"Locations"
|
||||||
],
|
],
|
||||||
"summary": "updates a location",
|
"summary": "Update Location",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -1299,7 +1302,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Locations"
|
"Locations"
|
||||||
],
|
],
|
||||||
"summary": "deletes a location",
|
"summary": "Delete Location",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -1329,7 +1332,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Notifiers"
|
"Notifiers"
|
||||||
],
|
],
|
||||||
"summary": "Get All notifier",
|
"summary": "Get Notifiers",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -1366,7 +1369,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Notifiers"
|
"Notifiers"
|
||||||
],
|
],
|
||||||
"summary": "Create a new notifier",
|
"summary": "Create Notifier",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "Notifier Data",
|
"description": "Notifier Data",
|
||||||
|
@ -1401,7 +1404,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Notifiers"
|
"Notifiers"
|
||||||
],
|
],
|
||||||
"summary": "Test notifier",
|
"summary": "Test Notifier",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -1435,7 +1438,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Notifiers"
|
"Notifiers"
|
||||||
],
|
],
|
||||||
"summary": "Update a notifier",
|
"summary": "Update Notifier",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -1472,7 +1475,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Notifiers"
|
"Notifiers"
|
||||||
],
|
],
|
||||||
"summary": "Delete a notifier",
|
"summary": "Delete a Notifier",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -1502,7 +1505,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "Encode data into QRCode",
|
"summary": "Create QR Code",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -1534,7 +1537,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Reporting"
|
"Reporting"
|
||||||
],
|
],
|
||||||
"summary": "Generates a Bill of Materials CSV",
|
"summary": "Export Bill of Materials",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "text/csv",
|
"description": "text/csv",
|
||||||
|
@ -1553,7 +1556,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"Base"
|
"Base"
|
||||||
],
|
],
|
||||||
"summary": "Retrieves the basic information about the API",
|
"summary": "Application Info",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -1574,7 +1577,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"User"
|
"User"
|
||||||
],
|
],
|
||||||
"summary": "Updates the users password",
|
"summary": "Change Password",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "Password Payload",
|
"description": "Password Payload",
|
||||||
|
@ -1677,7 +1680,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"User"
|
"User"
|
||||||
],
|
],
|
||||||
"summary": "Get the current user",
|
"summary": "Register New User",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "User Data",
|
"description": "User Data",
|
||||||
|
@ -1709,7 +1712,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"User"
|
"User"
|
||||||
],
|
],
|
||||||
"summary": "Get the current user",
|
"summary": "Get User Self",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -1743,7 +1746,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"User"
|
"User"
|
||||||
],
|
],
|
||||||
"summary": "Update the current user",
|
"summary": "Update Account",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "User Data",
|
"description": "User Data",
|
||||||
|
@ -1788,7 +1791,7 @@ const docTemplate = `{
|
||||||
"tags": [
|
"tags": [
|
||||||
"User"
|
"User"
|
||||||
],
|
],
|
||||||
"summary": "Deletes the user account",
|
"summary": "Delete Account",
|
||||||
"responses": {
|
"responses": {
|
||||||
"204": {
|
"204": {
|
||||||
"description": "No Content"
|
"description": "No Content"
|
||||||
|
@ -2836,8 +2839,8 @@ var SwaggerInfo = &swag.Spec{
|
||||||
Host: "",
|
Host: "",
|
||||||
BasePath: "/api",
|
BasePath: "/api",
|
||||||
Schemes: []string{},
|
Schemes: []string{},
|
||||||
Title: "Go API Templates",
|
Title: "Homebox API",
|
||||||
Description: "This is a simple Rest API Server Template that implements some basic User and Authentication patterns to help you get started and bootstrap your next project!.",
|
Description: "Track, Manage, and Organize your Shit.",
|
||||||
InfoInstanceName: "swagger",
|
InfoInstanceName: "swagger",
|
||||||
SwaggerTemplate: docTemplate,
|
SwaggerTemplate: docTemplate,
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
"swagger": "2.0",
|
"swagger": "2.0",
|
||||||
"info": {
|
"info": {
|
||||||
"description": "This is a simple Rest API Server Template that implements some basic User and Authentication patterns to help you get started and bootstrap your next project!.",
|
"description": "Track, Manage, and Organize your Shit.",
|
||||||
"title": "Go API Templates",
|
"title": "Homebox API",
|
||||||
"contact": {
|
"contact": {
|
||||||
"name": "Don't"
|
"name": "Don't"
|
||||||
},
|
},
|
||||||
|
@ -20,13 +20,14 @@
|
||||||
"Bearer": []
|
"Bearer": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"description": "Ensures all items in the database have an asset ID",
|
||||||
"produces": [
|
"produces": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"Group"
|
"Actions"
|
||||||
],
|
],
|
||||||
"summary": "Ensures all items in the database have an asset id",
|
"summary": "Ensure Asset IDs",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -44,13 +45,14 @@
|
||||||
"Bearer": []
|
"Bearer": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"description": "Ensures all items in the database have an import ref",
|
||||||
"produces": [
|
"produces": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"Group"
|
"Actions"
|
||||||
],
|
],
|
||||||
"summary": "Ensures all items in the database have an import ref",
|
"summary": "Ensures Import Refs",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -68,13 +70,14 @@
|
||||||
"Bearer": []
|
"Bearer": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"description": "Resets all item date fields to the beginning of the day",
|
||||||
"produces": [
|
"produces": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"Group"
|
"Actions"
|
||||||
],
|
],
|
||||||
"summary": "Resets all item date fields to the beginning of the day",
|
"summary": "Zero Out Time Fields",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -96,9 +99,9 @@
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"Assets"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "Gets an item by Asset ID",
|
"summary": "Get Item by Asset ID",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -131,7 +134,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Group"
|
"Group"
|
||||||
],
|
],
|
||||||
"summary": "Get the current user's group",
|
"summary": "Get Group",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -153,7 +156,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Group"
|
"Group"
|
||||||
],
|
],
|
||||||
"summary": "Updates some fields of the current users group",
|
"summary": "Update Group",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "User Data",
|
"description": "User Data",
|
||||||
|
@ -188,7 +191,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Group"
|
"Group"
|
||||||
],
|
],
|
||||||
"summary": "Get the current user",
|
"summary": "Create Group Invitation",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "User Data",
|
"description": "User Data",
|
||||||
|
@ -223,7 +226,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Statistics"
|
"Statistics"
|
||||||
],
|
],
|
||||||
"summary": "Get the current user's group statistics",
|
"summary": "Get Group Statistics",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -247,7 +250,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Statistics"
|
"Statistics"
|
||||||
],
|
],
|
||||||
"summary": "Get the current user's group statistics",
|
"summary": "Get Label Statistics",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -274,7 +277,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Statistics"
|
"Statistics"
|
||||||
],
|
],
|
||||||
"summary": "Get the current user's group statistics",
|
"summary": "Get Location Statistics",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -301,7 +304,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Statistics"
|
"Statistics"
|
||||||
],
|
],
|
||||||
"summary": "Queries the changes overtime of the purchase price over time",
|
"summary": "Get Purchase Price Statistics",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -339,7 +342,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "Get All Items",
|
"summary": "Query All Items",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -401,7 +404,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "Create a new item",
|
"summary": "Create Item",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "Item Data",
|
"description": "Item Data",
|
||||||
|
@ -433,7 +436,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "exports items into the database",
|
"summary": "Export Items",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "text/csv",
|
"description": "text/csv",
|
||||||
|
@ -457,7 +460,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "imports items into the database",
|
"summary": "Get All Custom Field Names",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -484,7 +487,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "imports items into the database",
|
"summary": "Get All Custom Field Values",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -511,7 +514,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "imports items into the database",
|
"summary": "Import Items",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "file",
|
"type": "file",
|
||||||
|
@ -541,7 +544,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "Gets a item and fields",
|
"summary": "Get Item",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -572,7 +575,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "updates a item",
|
"summary": "Update Item",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -612,7 +615,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "deletes a item",
|
"summary": "Delete Item",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -642,7 +645,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items Attachments"
|
"Items Attachments"
|
||||||
],
|
],
|
||||||
"summary": "imports items into the database",
|
"summary": "Create Item Attachment",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -702,7 +705,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items Attachments"
|
"Items Attachments"
|
||||||
],
|
],
|
||||||
"summary": "retrieves an attachment for an item",
|
"summary": "Get Item Attachment",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -737,7 +740,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items Attachments"
|
"Items Attachments"
|
||||||
],
|
],
|
||||||
"summary": "retrieves an attachment for an item",
|
"summary": "Update Item Attachment",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -781,7 +784,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items Attachments"
|
"Items Attachments"
|
||||||
],
|
],
|
||||||
"summary": "retrieves an attachment for an item",
|
"summary": "Delete Item Attachment",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -966,7 +969,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Labels"
|
"Labels"
|
||||||
],
|
],
|
||||||
"summary": "Create a new label",
|
"summary": "Create Label",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "Label Data",
|
"description": "Label Data",
|
||||||
|
@ -1001,7 +1004,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Labels"
|
"Labels"
|
||||||
],
|
],
|
||||||
"summary": "Gets a label and fields",
|
"summary": "Get Label",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -1032,7 +1035,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Labels"
|
"Labels"
|
||||||
],
|
],
|
||||||
"summary": "updates a label",
|
"summary": "Update Label",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -1063,7 +1066,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Labels"
|
"Labels"
|
||||||
],
|
],
|
||||||
"summary": "deletes a label",
|
"summary": "Delete Label",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -1138,7 +1141,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Locations"
|
"Locations"
|
||||||
],
|
],
|
||||||
"summary": "Create a new location",
|
"summary": "Create Location",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "Location Data",
|
"description": "Location Data",
|
||||||
|
@ -1173,7 +1176,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Locations"
|
"Locations"
|
||||||
],
|
],
|
||||||
"summary": "Get All Locations",
|
"summary": "Get Locations Tree",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
|
@ -1220,7 +1223,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Locations"
|
"Locations"
|
||||||
],
|
],
|
||||||
"summary": "Gets a location and fields",
|
"summary": "Get Location",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -1251,7 +1254,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Locations"
|
"Locations"
|
||||||
],
|
],
|
||||||
"summary": "updates a location",
|
"summary": "Update Location",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -1291,7 +1294,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Locations"
|
"Locations"
|
||||||
],
|
],
|
||||||
"summary": "deletes a location",
|
"summary": "Delete Location",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -1321,7 +1324,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Notifiers"
|
"Notifiers"
|
||||||
],
|
],
|
||||||
"summary": "Get All notifier",
|
"summary": "Get Notifiers",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -1358,7 +1361,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Notifiers"
|
"Notifiers"
|
||||||
],
|
],
|
||||||
"summary": "Create a new notifier",
|
"summary": "Create Notifier",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "Notifier Data",
|
"description": "Notifier Data",
|
||||||
|
@ -1393,7 +1396,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Notifiers"
|
"Notifiers"
|
||||||
],
|
],
|
||||||
"summary": "Test notifier",
|
"summary": "Test Notifier",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -1427,7 +1430,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Notifiers"
|
"Notifiers"
|
||||||
],
|
],
|
||||||
"summary": "Update a notifier",
|
"summary": "Update Notifier",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -1464,7 +1467,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Notifiers"
|
"Notifiers"
|
||||||
],
|
],
|
||||||
"summary": "Delete a notifier",
|
"summary": "Delete a Notifier",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -1494,7 +1497,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "Encode data into QRCode",
|
"summary": "Create QR Code",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -1526,7 +1529,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Reporting"
|
"Reporting"
|
||||||
],
|
],
|
||||||
"summary": "Generates a Bill of Materials CSV",
|
"summary": "Export Bill of Materials",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "text/csv",
|
"description": "text/csv",
|
||||||
|
@ -1545,7 +1548,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Base"
|
"Base"
|
||||||
],
|
],
|
||||||
"summary": "Retrieves the basic information about the API",
|
"summary": "Application Info",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -1566,7 +1569,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"User"
|
"User"
|
||||||
],
|
],
|
||||||
"summary": "Updates the users password",
|
"summary": "Change Password",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "Password Payload",
|
"description": "Password Payload",
|
||||||
|
@ -1669,7 +1672,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"User"
|
"User"
|
||||||
],
|
],
|
||||||
"summary": "Get the current user",
|
"summary": "Register New User",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "User Data",
|
"description": "User Data",
|
||||||
|
@ -1701,7 +1704,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"User"
|
"User"
|
||||||
],
|
],
|
||||||
"summary": "Get the current user",
|
"summary": "Get User Self",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -1735,7 +1738,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"User"
|
"User"
|
||||||
],
|
],
|
||||||
"summary": "Update the current user",
|
"summary": "Update Account",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "User Data",
|
"description": "User Data",
|
||||||
|
@ -1780,7 +1783,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"User"
|
"User"
|
||||||
],
|
],
|
||||||
"summary": "Deletes the user account",
|
"summary": "Delete Account",
|
||||||
"responses": {
|
"responses": {
|
||||||
"204": {
|
"204": {
|
||||||
"description": "No Content"
|
"description": "No Content"
|
||||||
|
|
|
@ -685,16 +685,15 @@ definitions:
|
||||||
info:
|
info:
|
||||||
contact:
|
contact:
|
||||||
name: Don't
|
name: Don't
|
||||||
description: This is a simple Rest API Server Template that implements some basic
|
description: Track, Manage, and Organize your Shit.
|
||||||
User and Authentication patterns to help you get started and bootstrap your next
|
|
||||||
project!.
|
|
||||||
license:
|
license:
|
||||||
name: MIT
|
name: MIT
|
||||||
title: Go API Templates
|
title: Homebox API
|
||||||
version: "1.0"
|
version: "1.0"
|
||||||
paths:
|
paths:
|
||||||
/v1/actions/ensure-asset-ids:
|
/v1/actions/ensure-asset-ids:
|
||||||
post:
|
post:
|
||||||
|
description: Ensures all items in the database have an asset ID
|
||||||
produces:
|
produces:
|
||||||
- application/json
|
- application/json
|
||||||
responses:
|
responses:
|
||||||
|
@ -704,11 +703,12 @@ paths:
|
||||||
$ref: '#/definitions/v1.ActionAmountResult'
|
$ref: '#/definitions/v1.ActionAmountResult'
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: Ensures all items in the database have an asset id
|
summary: Ensure Asset IDs
|
||||||
tags:
|
tags:
|
||||||
- Group
|
- Actions
|
||||||
/v1/actions/ensure-import-refs:
|
/v1/actions/ensure-import-refs:
|
||||||
post:
|
post:
|
||||||
|
description: Ensures all items in the database have an import ref
|
||||||
produces:
|
produces:
|
||||||
- application/json
|
- application/json
|
||||||
responses:
|
responses:
|
||||||
|
@ -718,11 +718,12 @@ paths:
|
||||||
$ref: '#/definitions/v1.ActionAmountResult'
|
$ref: '#/definitions/v1.ActionAmountResult'
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: Ensures all items in the database have an import ref
|
summary: Ensures Import Refs
|
||||||
tags:
|
tags:
|
||||||
- Group
|
- Actions
|
||||||
/v1/actions/zero-item-time-fields:
|
/v1/actions/zero-item-time-fields:
|
||||||
post:
|
post:
|
||||||
|
description: Resets all item date fields to the beginning of the day
|
||||||
produces:
|
produces:
|
||||||
- application/json
|
- application/json
|
||||||
responses:
|
responses:
|
||||||
|
@ -732,9 +733,9 @@ paths:
|
||||||
$ref: '#/definitions/v1.ActionAmountResult'
|
$ref: '#/definitions/v1.ActionAmountResult'
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: Resets all item date fields to the beginning of the day
|
summary: Zero Out Time Fields
|
||||||
tags:
|
tags:
|
||||||
- Group
|
- Actions
|
||||||
/v1/assets/{id}:
|
/v1/assets/{id}:
|
||||||
get:
|
get:
|
||||||
parameters:
|
parameters:
|
||||||
|
@ -752,9 +753,9 @@ paths:
|
||||||
$ref: '#/definitions/repo.PaginationResult-repo_ItemSummary'
|
$ref: '#/definitions/repo.PaginationResult-repo_ItemSummary'
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: Gets an item by Asset ID
|
summary: Get Item by Asset ID
|
||||||
tags:
|
tags:
|
||||||
- Assets
|
- Items
|
||||||
/v1/groups:
|
/v1/groups:
|
||||||
get:
|
get:
|
||||||
produces:
|
produces:
|
||||||
|
@ -766,7 +767,7 @@ paths:
|
||||||
$ref: '#/definitions/repo.Group'
|
$ref: '#/definitions/repo.Group'
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: Get the current user's group
|
summary: Get Group
|
||||||
tags:
|
tags:
|
||||||
- Group
|
- Group
|
||||||
put:
|
put:
|
||||||
|
@ -786,7 +787,7 @@ paths:
|
||||||
$ref: '#/definitions/repo.Group'
|
$ref: '#/definitions/repo.Group'
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: Updates some fields of the current users group
|
summary: Update Group
|
||||||
tags:
|
tags:
|
||||||
- Group
|
- Group
|
||||||
/v1/groups/invitations:
|
/v1/groups/invitations:
|
||||||
|
@ -807,7 +808,7 @@ paths:
|
||||||
$ref: '#/definitions/v1.GroupInvitation'
|
$ref: '#/definitions/v1.GroupInvitation'
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: Get the current user
|
summary: Create Group Invitation
|
||||||
tags:
|
tags:
|
||||||
- Group
|
- Group
|
||||||
/v1/groups/statistics:
|
/v1/groups/statistics:
|
||||||
|
@ -821,7 +822,7 @@ paths:
|
||||||
$ref: '#/definitions/repo.GroupStatistics'
|
$ref: '#/definitions/repo.GroupStatistics'
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: Get the current user's group statistics
|
summary: Get Group Statistics
|
||||||
tags:
|
tags:
|
||||||
- Statistics
|
- Statistics
|
||||||
/v1/groups/statistics/labels:
|
/v1/groups/statistics/labels:
|
||||||
|
@ -837,7 +838,7 @@ paths:
|
||||||
type: array
|
type: array
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: Get the current user's group statistics
|
summary: Get Label Statistics
|
||||||
tags:
|
tags:
|
||||||
- Statistics
|
- Statistics
|
||||||
/v1/groups/statistics/locations:
|
/v1/groups/statistics/locations:
|
||||||
|
@ -853,7 +854,7 @@ paths:
|
||||||
type: array
|
type: array
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: Get the current user's group statistics
|
summary: Get Location Statistics
|
||||||
tags:
|
tags:
|
||||||
- Statistics
|
- Statistics
|
||||||
/v1/groups/statistics/purchase-price:
|
/v1/groups/statistics/purchase-price:
|
||||||
|
@ -876,7 +877,7 @@ paths:
|
||||||
$ref: '#/definitions/repo.ValueOverTime'
|
$ref: '#/definitions/repo.ValueOverTime'
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: Queries the changes overtime of the purchase price over time
|
summary: Get Purchase Price Statistics
|
||||||
tags:
|
tags:
|
||||||
- Statistics
|
- Statistics
|
||||||
/v1/items:
|
/v1/items:
|
||||||
|
@ -917,7 +918,7 @@ paths:
|
||||||
$ref: '#/definitions/repo.PaginationResult-repo_ItemSummary'
|
$ref: '#/definitions/repo.PaginationResult-repo_ItemSummary'
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: Get All Items
|
summary: Query All Items
|
||||||
tags:
|
tags:
|
||||||
- Items
|
- Items
|
||||||
post:
|
post:
|
||||||
|
@ -937,7 +938,7 @@ paths:
|
||||||
$ref: '#/definitions/repo.ItemSummary'
|
$ref: '#/definitions/repo.ItemSummary'
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: Create a new item
|
summary: Create Item
|
||||||
tags:
|
tags:
|
||||||
- Items
|
- Items
|
||||||
/v1/items/{id}:
|
/v1/items/{id}:
|
||||||
|
@ -955,7 +956,7 @@ paths:
|
||||||
description: No Content
|
description: No Content
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: deletes a item
|
summary: Delete Item
|
||||||
tags:
|
tags:
|
||||||
- Items
|
- Items
|
||||||
get:
|
get:
|
||||||
|
@ -974,7 +975,7 @@ paths:
|
||||||
$ref: '#/definitions/repo.ItemOut'
|
$ref: '#/definitions/repo.ItemOut'
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: Gets a item and fields
|
summary: Get Item
|
||||||
tags:
|
tags:
|
||||||
- Items
|
- Items
|
||||||
put:
|
put:
|
||||||
|
@ -999,7 +1000,7 @@ paths:
|
||||||
$ref: '#/definitions/repo.ItemOut'
|
$ref: '#/definitions/repo.ItemOut'
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: updates a item
|
summary: Update Item
|
||||||
tags:
|
tags:
|
||||||
- Items
|
- Items
|
||||||
/v1/items/{id}/attachments:
|
/v1/items/{id}/attachments:
|
||||||
|
@ -1038,7 +1039,7 @@ paths:
|
||||||
$ref: '#/definitions/server.ErrorResponse'
|
$ref: '#/definitions/server.ErrorResponse'
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: imports items into the database
|
summary: Create Item Attachment
|
||||||
tags:
|
tags:
|
||||||
- Items Attachments
|
- Items Attachments
|
||||||
/v1/items/{id}/attachments/{attachment_id}:
|
/v1/items/{id}/attachments/{attachment_id}:
|
||||||
|
@ -1059,7 +1060,7 @@ paths:
|
||||||
description: No Content
|
description: No Content
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: retrieves an attachment for an item
|
summary: Delete Item Attachment
|
||||||
tags:
|
tags:
|
||||||
- Items Attachments
|
- Items Attachments
|
||||||
get:
|
get:
|
||||||
|
@ -1083,7 +1084,7 @@ paths:
|
||||||
$ref: '#/definitions/v1.ItemAttachmentToken'
|
$ref: '#/definitions/v1.ItemAttachmentToken'
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: retrieves an attachment for an item
|
summary: Get Item Attachment
|
||||||
tags:
|
tags:
|
||||||
- Items Attachments
|
- Items Attachments
|
||||||
put:
|
put:
|
||||||
|
@ -1111,7 +1112,7 @@ paths:
|
||||||
$ref: '#/definitions/repo.ItemOut'
|
$ref: '#/definitions/repo.ItemOut'
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: retrieves an attachment for an item
|
summary: Update Item Attachment
|
||||||
tags:
|
tags:
|
||||||
- Items Attachments
|
- Items Attachments
|
||||||
/v1/items/{id}/maintenance:
|
/v1/items/{id}/maintenance:
|
||||||
|
@ -1189,7 +1190,7 @@ paths:
|
||||||
type: string
|
type: string
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: exports items into the database
|
summary: Export Items
|
||||||
tags:
|
tags:
|
||||||
- Items
|
- Items
|
||||||
/v1/items/fields:
|
/v1/items/fields:
|
||||||
|
@ -1205,7 +1206,7 @@ paths:
|
||||||
type: array
|
type: array
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: imports items into the database
|
summary: Get All Custom Field Names
|
||||||
tags:
|
tags:
|
||||||
- Items
|
- Items
|
||||||
/v1/items/fields/values:
|
/v1/items/fields/values:
|
||||||
|
@ -1221,7 +1222,7 @@ paths:
|
||||||
type: array
|
type: array
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: imports items into the database
|
summary: Get All Custom Field Values
|
||||||
tags:
|
tags:
|
||||||
- Items
|
- Items
|
||||||
/v1/items/import:
|
/v1/items/import:
|
||||||
|
@ -1239,7 +1240,7 @@ paths:
|
||||||
description: No Content
|
description: No Content
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: imports items into the database
|
summary: Import Items
|
||||||
tags:
|
tags:
|
||||||
- Items
|
- Items
|
||||||
/v1/labels:
|
/v1/labels:
|
||||||
|
@ -1280,7 +1281,7 @@ paths:
|
||||||
$ref: '#/definitions/repo.LabelSummary'
|
$ref: '#/definitions/repo.LabelSummary'
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: Create a new label
|
summary: Create Label
|
||||||
tags:
|
tags:
|
||||||
- Labels
|
- Labels
|
||||||
/v1/labels/{id}:
|
/v1/labels/{id}:
|
||||||
|
@ -1298,7 +1299,7 @@ paths:
|
||||||
description: No Content
|
description: No Content
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: deletes a label
|
summary: Delete Label
|
||||||
tags:
|
tags:
|
||||||
- Labels
|
- Labels
|
||||||
get:
|
get:
|
||||||
|
@ -1317,7 +1318,7 @@ paths:
|
||||||
$ref: '#/definitions/repo.LabelOut'
|
$ref: '#/definitions/repo.LabelOut'
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: Gets a label and fields
|
summary: Get Label
|
||||||
tags:
|
tags:
|
||||||
- Labels
|
- Labels
|
||||||
put:
|
put:
|
||||||
|
@ -1336,7 +1337,7 @@ paths:
|
||||||
$ref: '#/definitions/repo.LabelOut'
|
$ref: '#/definitions/repo.LabelOut'
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: updates a label
|
summary: Update Label
|
||||||
tags:
|
tags:
|
||||||
- Labels
|
- Labels
|
||||||
/v1/locations:
|
/v1/locations:
|
||||||
|
@ -1382,7 +1383,7 @@ paths:
|
||||||
$ref: '#/definitions/repo.LocationSummary'
|
$ref: '#/definitions/repo.LocationSummary'
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: Create a new location
|
summary: Create Location
|
||||||
tags:
|
tags:
|
||||||
- Locations
|
- Locations
|
||||||
/v1/locations/{id}:
|
/v1/locations/{id}:
|
||||||
|
@ -1400,7 +1401,7 @@ paths:
|
||||||
description: No Content
|
description: No Content
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: deletes a location
|
summary: Delete Location
|
||||||
tags:
|
tags:
|
||||||
- Locations
|
- Locations
|
||||||
get:
|
get:
|
||||||
|
@ -1419,7 +1420,7 @@ paths:
|
||||||
$ref: '#/definitions/repo.LocationOut'
|
$ref: '#/definitions/repo.LocationOut'
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: Gets a location and fields
|
summary: Get Location
|
||||||
tags:
|
tags:
|
||||||
- Locations
|
- Locations
|
||||||
put:
|
put:
|
||||||
|
@ -1444,7 +1445,7 @@ paths:
|
||||||
$ref: '#/definitions/repo.LocationOut'
|
$ref: '#/definitions/repo.LocationOut'
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: updates a location
|
summary: Update Location
|
||||||
tags:
|
tags:
|
||||||
- Locations
|
- Locations
|
||||||
/v1/locations/tree:
|
/v1/locations/tree:
|
||||||
|
@ -1470,7 +1471,7 @@ paths:
|
||||||
type: object
|
type: object
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: Get All Locations
|
summary: Get Locations Tree
|
||||||
tags:
|
tags:
|
||||||
- Locations
|
- Locations
|
||||||
/v1/notifiers:
|
/v1/notifiers:
|
||||||
|
@ -1491,7 +1492,7 @@ paths:
|
||||||
type: object
|
type: object
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: Get All notifier
|
summary: Get Notifiers
|
||||||
tags:
|
tags:
|
||||||
- Notifiers
|
- Notifiers
|
||||||
post:
|
post:
|
||||||
|
@ -1511,7 +1512,7 @@ paths:
|
||||||
$ref: '#/definitions/repo.NotifierOut'
|
$ref: '#/definitions/repo.NotifierOut'
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: Create a new notifier
|
summary: Create Notifier
|
||||||
tags:
|
tags:
|
||||||
- Notifiers
|
- Notifiers
|
||||||
/v1/notifiers/{id}:
|
/v1/notifiers/{id}:
|
||||||
|
@ -1527,7 +1528,7 @@ paths:
|
||||||
description: No Content
|
description: No Content
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: Delete a notifier
|
summary: Delete a Notifier
|
||||||
tags:
|
tags:
|
||||||
- Notifiers
|
- Notifiers
|
||||||
put:
|
put:
|
||||||
|
@ -1550,7 +1551,7 @@ paths:
|
||||||
$ref: '#/definitions/repo.NotifierOut'
|
$ref: '#/definitions/repo.NotifierOut'
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: Update a notifier
|
summary: Update Notifier
|
||||||
tags:
|
tags:
|
||||||
- Notifiers
|
- Notifiers
|
||||||
/v1/notifiers/test:
|
/v1/notifiers/test:
|
||||||
|
@ -1573,7 +1574,7 @@ paths:
|
||||||
description: No Content
|
description: No Content
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: Test notifier
|
summary: Test Notifier
|
||||||
tags:
|
tags:
|
||||||
- Notifiers
|
- Notifiers
|
||||||
/v1/qrcode:
|
/v1/qrcode:
|
||||||
|
@ -1592,7 +1593,7 @@ paths:
|
||||||
type: string
|
type: string
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: Encode data into QRCode
|
summary: Create QR Code
|
||||||
tags:
|
tags:
|
||||||
- Items
|
- Items
|
||||||
/v1/reporting/bill-of-materials:
|
/v1/reporting/bill-of-materials:
|
||||||
|
@ -1606,7 +1607,7 @@ paths:
|
||||||
type: string
|
type: string
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: Generates a Bill of Materials CSV
|
summary: Export Bill of Materials
|
||||||
tags:
|
tags:
|
||||||
- Reporting
|
- Reporting
|
||||||
/v1/status:
|
/v1/status:
|
||||||
|
@ -1618,7 +1619,7 @@ paths:
|
||||||
description: OK
|
description: OK
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/definitions/v1.ApiSummary'
|
$ref: '#/definitions/v1.ApiSummary'
|
||||||
summary: Retrieves the basic information about the API
|
summary: Application Info
|
||||||
tags:
|
tags:
|
||||||
- Base
|
- Base
|
||||||
/v1/users/change-password:
|
/v1/users/change-password:
|
||||||
|
@ -1635,7 +1636,7 @@ paths:
|
||||||
description: No Content
|
description: No Content
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: Updates the users password
|
summary: Change Password
|
||||||
tags:
|
tags:
|
||||||
- User
|
- User
|
||||||
/v1/users/login:
|
/v1/users/login:
|
||||||
|
@ -1701,7 +1702,7 @@ paths:
|
||||||
responses:
|
responses:
|
||||||
"204":
|
"204":
|
||||||
description: No Content
|
description: No Content
|
||||||
summary: Get the current user
|
summary: Register New User
|
||||||
tags:
|
tags:
|
||||||
- User
|
- User
|
||||||
/v1/users/self:
|
/v1/users/self:
|
||||||
|
@ -1713,7 +1714,7 @@ paths:
|
||||||
description: No Content
|
description: No Content
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: Deletes the user account
|
summary: Delete Account
|
||||||
tags:
|
tags:
|
||||||
- User
|
- User
|
||||||
get:
|
get:
|
||||||
|
@ -1731,7 +1732,7 @@ paths:
|
||||||
type: object
|
type: object
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: Get the current user
|
summary: Get User Self
|
||||||
tags:
|
tags:
|
||||||
- User
|
- User
|
||||||
put:
|
put:
|
||||||
|
@ -1756,7 +1757,7 @@ paths:
|
||||||
type: object
|
type: object
|
||||||
security:
|
security:
|
||||||
- Bearer: []
|
- Bearer: []
|
||||||
summary: Update the current user
|
summary: Update Account
|
||||||
tags:
|
tags:
|
||||||
- User
|
- User
|
||||||
securityDefinitions:
|
securityDefinitions:
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
"swagger": "2.0",
|
"swagger": "2.0",
|
||||||
"info": {
|
"info": {
|
||||||
"description": "This is a simple Rest API Server Template that implements some basic User and Authentication patterns to help you get started and bootstrap your next project!.",
|
"description": "Track, Manage, and Organize your Shit.",
|
||||||
"title": "Go API Templates",
|
"title": "Homebox API",
|
||||||
"contact": {
|
"contact": {
|
||||||
"name": "Don't"
|
"name": "Don't"
|
||||||
},
|
},
|
||||||
|
@ -20,13 +20,14 @@
|
||||||
"Bearer": []
|
"Bearer": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"description": "Ensures all items in the database have an asset ID",
|
||||||
"produces": [
|
"produces": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"Group"
|
"Actions"
|
||||||
],
|
],
|
||||||
"summary": "Ensures all items in the database have an asset id",
|
"summary": "Ensure Asset IDs",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -44,13 +45,14 @@
|
||||||
"Bearer": []
|
"Bearer": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"description": "Ensures all items in the database have an import ref",
|
||||||
"produces": [
|
"produces": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"Group"
|
"Actions"
|
||||||
],
|
],
|
||||||
"summary": "Ensures all items in the database have an import ref",
|
"summary": "Ensures Import Refs",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -68,13 +70,14 @@
|
||||||
"Bearer": []
|
"Bearer": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"description": "Resets all item date fields to the beginning of the day",
|
||||||
"produces": [
|
"produces": [
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"Group"
|
"Actions"
|
||||||
],
|
],
|
||||||
"summary": "Resets all item date fields to the beginning of the day",
|
"summary": "Zero Out Time Fields",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -96,9 +99,9 @@
|
||||||
"application/json"
|
"application/json"
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"Assets"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "Gets an item by Asset ID",
|
"summary": "Get Item by Asset ID",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -131,7 +134,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Group"
|
"Group"
|
||||||
],
|
],
|
||||||
"summary": "Get the current user's group",
|
"summary": "Get Group",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -153,7 +156,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Group"
|
"Group"
|
||||||
],
|
],
|
||||||
"summary": "Updates some fields of the current users group",
|
"summary": "Update Group",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "User Data",
|
"description": "User Data",
|
||||||
|
@ -188,7 +191,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Group"
|
"Group"
|
||||||
],
|
],
|
||||||
"summary": "Get the current user",
|
"summary": "Create Group Invitation",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "User Data",
|
"description": "User Data",
|
||||||
|
@ -223,7 +226,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Statistics"
|
"Statistics"
|
||||||
],
|
],
|
||||||
"summary": "Get the current user's group statistics",
|
"summary": "Get Group Statistics",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -247,7 +250,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Statistics"
|
"Statistics"
|
||||||
],
|
],
|
||||||
"summary": "Get the current user's group statistics",
|
"summary": "Get Label Statistics",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -274,7 +277,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Statistics"
|
"Statistics"
|
||||||
],
|
],
|
||||||
"summary": "Get the current user's group statistics",
|
"summary": "Get Location Statistics",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -301,7 +304,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Statistics"
|
"Statistics"
|
||||||
],
|
],
|
||||||
"summary": "Queries the changes overtime of the purchase price over time",
|
"summary": "Get Purchase Price Statistics",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -339,7 +342,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "Get All Items",
|
"summary": "Query All Items",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -401,7 +404,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "Create a new item",
|
"summary": "Create Item",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "Item Data",
|
"description": "Item Data",
|
||||||
|
@ -433,7 +436,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "exports items into the database",
|
"summary": "Export Items",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "text/csv",
|
"description": "text/csv",
|
||||||
|
@ -457,7 +460,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "imports items into the database",
|
"summary": "Get All Custom Field Names",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -484,7 +487,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "imports items into the database",
|
"summary": "Get All Custom Field Values",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -511,7 +514,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "imports items into the database",
|
"summary": "Import Items",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "file",
|
"type": "file",
|
||||||
|
@ -541,7 +544,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "Gets a item and fields",
|
"summary": "Get Item",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -572,7 +575,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "updates a item",
|
"summary": "Update Item",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -612,7 +615,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "deletes a item",
|
"summary": "Delete Item",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -642,7 +645,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items Attachments"
|
"Items Attachments"
|
||||||
],
|
],
|
||||||
"summary": "imports items into the database",
|
"summary": "Create Item Attachment",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -702,7 +705,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items Attachments"
|
"Items Attachments"
|
||||||
],
|
],
|
||||||
"summary": "retrieves an attachment for an item",
|
"summary": "Get Item Attachment",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -737,7 +740,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items Attachments"
|
"Items Attachments"
|
||||||
],
|
],
|
||||||
"summary": "retrieves an attachment for an item",
|
"summary": "Update Item Attachment",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -781,7 +784,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items Attachments"
|
"Items Attachments"
|
||||||
],
|
],
|
||||||
"summary": "retrieves an attachment for an item",
|
"summary": "Delete Item Attachment",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -966,7 +969,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Labels"
|
"Labels"
|
||||||
],
|
],
|
||||||
"summary": "Create a new label",
|
"summary": "Create Label",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "Label Data",
|
"description": "Label Data",
|
||||||
|
@ -1001,7 +1004,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Labels"
|
"Labels"
|
||||||
],
|
],
|
||||||
"summary": "Gets a label and fields",
|
"summary": "Get Label",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -1032,7 +1035,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Labels"
|
"Labels"
|
||||||
],
|
],
|
||||||
"summary": "updates a label",
|
"summary": "Update Label",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -1063,7 +1066,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Labels"
|
"Labels"
|
||||||
],
|
],
|
||||||
"summary": "deletes a label",
|
"summary": "Delete Label",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -1138,7 +1141,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Locations"
|
"Locations"
|
||||||
],
|
],
|
||||||
"summary": "Create a new location",
|
"summary": "Create Location",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "Location Data",
|
"description": "Location Data",
|
||||||
|
@ -1173,7 +1176,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Locations"
|
"Locations"
|
||||||
],
|
],
|
||||||
"summary": "Get All Locations",
|
"summary": "Get Locations Tree",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
|
@ -1220,7 +1223,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Locations"
|
"Locations"
|
||||||
],
|
],
|
||||||
"summary": "Gets a location and fields",
|
"summary": "Get Location",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -1251,7 +1254,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Locations"
|
"Locations"
|
||||||
],
|
],
|
||||||
"summary": "updates a location",
|
"summary": "Update Location",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -1291,7 +1294,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Locations"
|
"Locations"
|
||||||
],
|
],
|
||||||
"summary": "deletes a location",
|
"summary": "Delete Location",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -1321,7 +1324,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Notifiers"
|
"Notifiers"
|
||||||
],
|
],
|
||||||
"summary": "Get All notifier",
|
"summary": "Get Notifiers",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -1358,7 +1361,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Notifiers"
|
"Notifiers"
|
||||||
],
|
],
|
||||||
"summary": "Create a new notifier",
|
"summary": "Create Notifier",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "Notifier Data",
|
"description": "Notifier Data",
|
||||||
|
@ -1393,7 +1396,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Notifiers"
|
"Notifiers"
|
||||||
],
|
],
|
||||||
"summary": "Test notifier",
|
"summary": "Test Notifier",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -1427,7 +1430,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Notifiers"
|
"Notifiers"
|
||||||
],
|
],
|
||||||
"summary": "Update a notifier",
|
"summary": "Update Notifier",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -1464,7 +1467,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Notifiers"
|
"Notifiers"
|
||||||
],
|
],
|
||||||
"summary": "Delete a notifier",
|
"summary": "Delete a Notifier",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -1494,7 +1497,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Items"
|
"Items"
|
||||||
],
|
],
|
||||||
"summary": "Encode data into QRCode",
|
"summary": "Create QR Code",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
@ -1526,7 +1529,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Reporting"
|
"Reporting"
|
||||||
],
|
],
|
||||||
"summary": "Generates a Bill of Materials CSV",
|
"summary": "Export Bill of Materials",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "text/csv",
|
"description": "text/csv",
|
||||||
|
@ -1545,7 +1548,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"Base"
|
"Base"
|
||||||
],
|
],
|
||||||
"summary": "Retrieves the basic information about the API",
|
"summary": "Application Info",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -1566,7 +1569,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"User"
|
"User"
|
||||||
],
|
],
|
||||||
"summary": "Updates the users password",
|
"summary": "Change Password",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "Password Payload",
|
"description": "Password Payload",
|
||||||
|
@ -1669,7 +1672,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"User"
|
"User"
|
||||||
],
|
],
|
||||||
"summary": "Get the current user",
|
"summary": "Register New User",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "User Data",
|
"description": "User Data",
|
||||||
|
@ -1701,7 +1704,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"User"
|
"User"
|
||||||
],
|
],
|
||||||
"summary": "Get the current user",
|
"summary": "Get User Self",
|
||||||
"responses": {
|
"responses": {
|
||||||
"200": {
|
"200": {
|
||||||
"description": "OK",
|
"description": "OK",
|
||||||
|
@ -1735,7 +1738,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"User"
|
"User"
|
||||||
],
|
],
|
||||||
"summary": "Update the current user",
|
"summary": "Update Account",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
{
|
{
|
||||||
"description": "User Data",
|
"description": "User Data",
|
||||||
|
@ -1780,7 +1783,7 @@
|
||||||
"tags": [
|
"tags": [
|
||||||
"User"
|
"User"
|
||||||
],
|
],
|
||||||
"summary": "Deletes the user account",
|
"summary": "Delete Account",
|
||||||
"responses": {
|
"responses": {
|
||||||
"204": {
|
"204": {
|
||||||
"description": "No Content"
|
"description": "No Content"
|
||||||
|
|
Loading…
Reference in a new issue