Skip to content

Commit

Permalink
chore: update favicon to blue
Browse files Browse the repository at this point in the history
  • Loading branch information
ibuildthecloud committed Nov 13, 2024
1 parent 81b8c5c commit 18374da
Show file tree
Hide file tree
Showing 15 changed files with 9 additions and 7 deletions.
1 change: 1 addition & 0 deletions apiclient/types/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ type Metadata struct {
Deleted *Time `json:"deleted,omitempty"`
Links map[string]string `json:"links,omitempty"`
Metadata map[string]string `json:"metadata,omitempty"`
Type string `json:"type,omitempty"`
}
13 changes: 6 additions & 7 deletions apiclient/types/webhook.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,12 @@ type Webhook struct {
}

type WebhookManifest struct {
Description string `json:"description,omitempty"`
RefName string `json:"refName,omitempty"`
WorkflowID string `json:"workflowID,omitempty"`
AfterWorkflowStepName string `json:"afterWorkflowStepName,omitempty"`
Headers []string `json:"headers,omitempty"`
Secret string `json:"secret,omitempty"`
ValidationHeader string `json:"validationHeader,omitempty"`
Description string `json:"description,omitempty"`
RefName string `json:"refName,omitempty"`
WorkflowID string `json:"workflowID,omitempty"`
Headers []string `json:"headers,omitempty"`
Secret string `json:"secret,omitempty"`
ValidationHeader string `json:"validationHeader,omitempty"`
}

type WebhookExternalStatus struct {
Expand Down
2 changes: 2 additions & 0 deletions pkg/api/handlers/agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package handlers
import (
"fmt"
"net/http"
"reflect"
"strings"

"github.com/gptscript-ai/go-gptscript"
Expand Down Expand Up @@ -593,6 +594,7 @@ func MetadataFrom(obj kclient.Object, linkKV ...string) types.Metadata {
ID: obj.GetName(),
Created: *types.NewTime(obj.GetCreationTimestamp().Time),
Links: map[string]string{},
Type: strings.ToLower(reflect.TypeOf(obj).Elem().Name()),
}
if delTime := obj.GetDeletionTimestamp(); delTime != nil {
m.Deleted = types.NewTime(delTime.Time)
Expand Down
Binary file added ui/admin/public/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ui/admin/public/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ui/admin/public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ui/admin/public/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ui/admin/public/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified ui/admin/public/favicon.ico
Binary file not shown.
Binary file added ui/user/static/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ui/user/static/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ui/user/static/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ui/user/static/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ui/user/static/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added ui/user/static/favicon.ico
Binary file not shown.

0 comments on commit 18374da

Please sign in to comment.