Skip to content

Commit

Permalink
Rename directory audit_trail to audittrail
Browse files Browse the repository at this point in the history
  • Loading branch information
Axot017 committed Jan 16, 2025
1 parent ab0a903 commit 7d8242b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,12 @@ func listAuditTrailEntriesTable(
return err
}

columns := []string{"Action", "ID", "Type", "Affected Resource", "Related Resource", "Created By", "Created At"}
columns := []string{"Action", "Type", "Affected Resource", "Related Resource", "Created By", "Created At"}

tableData := [][]string{columns}
for _, b := range entries {
row := []string{
b.Action,
b.ID,
b.EventType,
formatAuditTrailResource(&b.AffectedResource),
formatAuditTrailResource(b.RelatedResource),
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"
"time"

audittrail "github.com/spacelift-io/spacectl/internal/cmd/audit_trail"
"github.com/spacelift-io/spacectl/internal/cmd/audittrail"
"github.com/spacelift-io/spacectl/internal/cmd/blueprint"
"github.com/spacelift-io/spacectl/internal/cmd/completion"
"github.com/spacelift-io/spacectl/internal/cmd/module"
Expand Down

0 comments on commit 7d8242b

Please sign in to comment.