From 032f0e87394064e35bd5fdf09db6c974f9be72f7 Mon Sep 17 00:00:00 2001
From: Quaternions <krakow20@gmail.com>
Date: Wed, 26 Mar 2025 20:16:44 -0700
Subject: [PATCH] openapi: opt out of security for get requests

---
 openapi.yaml | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/openapi.yaml b/openapi.yaml
index 573f0d0..bf8b646 100644
--- a/openapi.yaml
+++ b/openapi.yaml
@@ -61,6 +61,7 @@ paths:
       operationId: sessionValidate
       tags:
         - Session
+      security: []
       responses:
         "200":
           description: Successful response
@@ -80,6 +81,7 @@ paths:
       operationId: listSubmissions
       tags:
         - Submissions
+      security: []
       parameters:
       - $ref: "#/components/parameters/Page"
       - $ref: "#/components/parameters/Limit"
@@ -148,6 +150,7 @@ paths:
       operationId: getSubmission
       tags:
         - Submissions
+      security: []
       parameters:
         - $ref: '#/components/parameters/SubmissionID'
       responses:
@@ -376,6 +379,7 @@ paths:
       operationId: listScriptPolicy
       tags:
         - ScriptPolicy
+      security: []
       parameters:
       - $ref: "#/components/parameters/Page"
       - $ref: "#/components/parameters/Limit"
@@ -440,6 +444,7 @@ paths:
       operationId: getScriptPolicy
       tags:
         - ScriptPolicy
+      security: []
       parameters:
         - $ref: '#/components/parameters/ScriptPolicyID'
       responses:
@@ -499,6 +504,7 @@ paths:
       operationId: listScripts
       tags:
         - Script
+      security: []
       parameters:
       - $ref: "#/components/parameters/Page"
       - $ref: "#/components/parameters/Limit"
@@ -568,6 +574,7 @@ paths:
       operationId: getScript
       tags:
         - Scripts
+      security: []
       parameters:
         - $ref: '#/components/parameters/ScriptID'
       responses: