mirror of
https://git.freecumextremist.com/grumbulon/pomme.git
synced 2024-11-21 17:23:47 +00:00
Small nitpicks
gitignore: add default zones directory upload: fix typo in swagger docs config: simplify default save location Signed-off-by: Sam Therapy <sam@samtherapy.net>
This commit is contained in:
parent
b8d4af58c8
commit
12b219bf45
6 changed files with 9 additions and 8 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -26,4 +26,6 @@ test.db
|
|||
test.sqlite
|
||||
pomme.sqlite
|
||||
.dccache
|
||||
config.yaml
|
||||
config.yaml
|
||||
|
||||
zones/*
|
|
@ -3,4 +3,4 @@ hashingsecret: PasswordHashingSecret
|
|||
port: 3008 # port the server runs on
|
||||
db: pomme.sqlite
|
||||
testdb: test.sqlite
|
||||
zonedir: /home/user/pomme/nds/pomme/zones
|
||||
zonedir: zones
|
|
@ -1,5 +1,4 @@
|
|||
// Package docs GENERATED BY SWAG; DO NOT EDIT
|
||||
// This file was generated by swaggo/swag
|
||||
// Code generated by swaggo/swag. DO NOT EDIT
|
||||
package docs
|
||||
|
||||
import "github.com/swaggo/swag"
|
||||
|
@ -69,7 +68,7 @@ const docTemplate = `{
|
|||
"Bearer": []
|
||||
}
|
||||
],
|
||||
"description": "Upload takes a multipart form file as user input. It must not exceede 1 mb and must be of text/plain content type.\nIf a file uploads successfully it will be saved locally and parsed.\nIf parsing is successful pomme will save the file to your ZoneDir defined in your config.\nUploads are associated with a specific user.\nRate limited: 10 requests every 10 second\nyou must specify \"Bearer\" before entering your token",
|
||||
"description": "Upload takes a multipart form file as user input. It must not exceed 1 mb and must be of text/plain content type.\nIf a file uploads successfully it will be saved locally and parsed.\nIf parsing is successful pomme will save the file to your ZoneDir defined in your config.\nUploads are associated with a specific user.\nRate limited: 10 requests every 10 second\nyou must specify \"Bearer\" before entering your token",
|
||||
"consumes": [
|
||||
"multipart/form-data"
|
||||
],
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"Bearer": []
|
||||
}
|
||||
],
|
||||
"description": "Upload takes a multipart form file as user input. It must not exceede 1 mb and must be of text/plain content type.\nIf a file uploads successfully it will be saved locally and parsed.\nIf parsing is successful pomme will save the file to your ZoneDir defined in your config.\nUploads are associated with a specific user.\nRate limited: 10 requests every 10 second\nyou must specify \"Bearer\" before entering your token",
|
||||
"description": "Upload takes a multipart form file as user input. It must not exceed 1 mb and must be of text/plain content type.\nIf a file uploads successfully it will be saved locally and parsed.\nIf parsing is successful pomme will save the file to your ZoneDir defined in your config.\nUploads are associated with a specific user.\nRate limited: 10 requests every 10 second\nyou must specify \"Bearer\" before entering your token",
|
||||
"consumes": [
|
||||
"multipart/form-data"
|
||||
],
|
||||
|
|
|
@ -55,7 +55,7 @@ paths:
|
|||
consumes:
|
||||
- multipart/form-data
|
||||
description: |-
|
||||
Upload takes a multipart form file as user input. It must not exceede 1 mb and must be of text/plain content type.
|
||||
Upload takes a multipart form file as user input. It must not exceed 1 mb and must be of text/plain content type.
|
||||
If a file uploads successfully it will be saved locally and parsed.
|
||||
If parsing is successful pomme will save the file to your ZoneDir defined in your config.
|
||||
Uploads are associated with a specific user.
|
||||
|
|
|
@ -17,7 +17,7 @@ import (
|
|||
// Upload godoc
|
||||
//
|
||||
// @Summary upload a zonefile
|
||||
// @Description Upload takes a multipart form file as user input. It must not exceede 1 mb and must be of text/plain content type.
|
||||
// @Description Upload takes a multipart form file as user input. It must not exceed 1 mb and must be of text/plain content type.
|
||||
// @Description If a file uploads successfully it will be saved locally and parsed.
|
||||
// @Description If parsing is successful pomme will save the file to your ZoneDir defined in your config.
|
||||
// @Description Uploads are associated with a specific user.
|
||||
|
|
Loading…
Reference in a new issue