Compare commits

...
Author SHA1 Message Date
phoenixandphoenix 08f5938b79 tsk-24: Added IssuedAt to token.LoginResult (#28)
Closes #24

Reviewed-on: phoenix/textsender-models#28
Co-authored-by: phoenix <kundeng00@pm.me>
Co-committed-by: phoenix <kundeng00@pm.me>
2025-12-30 23:48:45 +00:00
phoenixandphoenix 9be6fa9b34 tsk-22: Remove URI from config.TwilioConfig (#27)
Closes #22

Reviewed-on: phoenix/textsender-models#27
Co-authored-by: phoenix <kundeng00@pm.me>
Co-committed-by: phoenix <kundeng00@pm.me>
2025-12-30 23:40:43 +00:00
4 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ jobs:
run: |
echo "Creating version"
VERSION="0.0.12"
VERSION="0.0.14"
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
-2
View File
@@ -7,7 +7,6 @@ import (
type TwilioConfig struct {
AccountSID string `json:"auth_sid"`
ServiceSID string `json:"service_sid"`
URI string `json:"uri"`
AuthToken string `json:"auth_token"`
Number string `json:"phone_number"`
}
@@ -16,7 +15,6 @@ func (config *TwilioConfig) PrintConfig() {
fmt.Println("Twilio config")
fmt.Println("Account SID:", config.AccountSID)
fmt.Println("Service SID:", config.ServiceSID)
fmt.Println("URI:", config.URI)
fmt.Println("Auth Token:", config.AuthToken)
fmt.Println("Number:", config.Number)
}
+1
View File
@@ -16,6 +16,7 @@ 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