Compare commits

..
Author SHA1 Message Date
phoenix faa0421ec1 tsk-22: Removing URI from config.TwilioConfig 2025-12-30 18:35:18 -05:00
4 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ jobs:
run: |
echo "Creating version"
VERSION="0.0.13"
VERSION="0.0.12"
PROJECT_COMMIT_HASH=$(git rev-parse HEAD | cut -c 1-10)
BRANCH_REF="${{ gitea.ref }}"
BRANCH_NAME=$(echo "$BRANCH_REF" | cut -d '/' -f 3)
View File
+1
View File
@@ -4,6 +4,7 @@ import (
"fmt"
)
type TwilioConfig struct {
AccountSID string `json:"auth_sid"`
ServiceSID string `json:"service_sid"`
-1
View File
@@ -16,7 +16,6 @@ type LoginResult struct {
AccessToken string `json:"access_token"`
TokenType string `json:"token_type"`
ExpiresIn int64 `json:"expires_in"`
IssuedAt int64 `json:"issued_at"`
}
// Alias for LoginResult