30
docs/docs.go
30
docs/docs.go
@@ -17,11 +17,6 @@ const docTemplate = `{
|
||||
"paths": {
|
||||
"/auth/exchange": {
|
||||
"post": {
|
||||
"security": [
|
||||
{
|
||||
"ApiKeyAuth": []
|
||||
}
|
||||
],
|
||||
"description": "Exchanges client credentials and user session for a specific redirect authorization code.",
|
||||
"consumes": [
|
||||
"application/json"
|
||||
@@ -529,6 +524,11 @@ const docTemplate = `{
|
||||
},
|
||||
"/event/checkin": {
|
||||
"get": {
|
||||
"security": [
|
||||
{
|
||||
"ApiKeyAuth": []
|
||||
}
|
||||
],
|
||||
"description": "Creates a temporary check-in code for the authenticated user and event.",
|
||||
"consumes": [
|
||||
"application/json"
|
||||
@@ -609,6 +609,11 @@ const docTemplate = `{
|
||||
},
|
||||
"/event/checkin/query": {
|
||||
"get": {
|
||||
"security": [
|
||||
{
|
||||
"ApiKeyAuth": []
|
||||
}
|
||||
],
|
||||
"description": "Returns the timestamp of when the user checked in, or null if not yet checked in.",
|
||||
"consumes": [
|
||||
"application/json"
|
||||
@@ -689,6 +694,11 @@ const docTemplate = `{
|
||||
},
|
||||
"/event/checkin/submit": {
|
||||
"post": {
|
||||
"security": [
|
||||
{
|
||||
"ApiKeyAuth": []
|
||||
}
|
||||
],
|
||||
"description": "Submits the generated code to mark the user as attended.",
|
||||
"consumes": [
|
||||
"application/json"
|
||||
@@ -753,6 +763,11 @@ const docTemplate = `{
|
||||
},
|
||||
"/event/info": {
|
||||
"get": {
|
||||
"security": [
|
||||
{
|
||||
"ApiKeyAuth": []
|
||||
}
|
||||
],
|
||||
"description": "Fetches the name, start time, and end time of an event using its UUID.",
|
||||
"consumes": [
|
||||
"application/json"
|
||||
@@ -1003,6 +1018,11 @@ const docTemplate = `{
|
||||
},
|
||||
"/user/list": {
|
||||
"get": {
|
||||
"security": [
|
||||
{
|
||||
"ApiKeyAuth": []
|
||||
}
|
||||
],
|
||||
"description": "Fetches a list of users with support for pagination via limit and offset. Data is sourced from the search engine for high performance.",
|
||||
"consumes": [
|
||||
"application/json"
|
||||
|
||||
Reference in New Issue
Block a user