Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

user-svc permissions #888

Merged
merged 23 commits into from
Dec 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Dockerfile.standalone
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ WORKDIR /build/spice

COPY go.* ./
COPY libs libs
COPY spicedb/migrations spicedb/migrations
RUN go mod download
COPY cmd/spice cmd/spice
RUN CGO_ENABLED=0 GOOS=linux go build -a -o spice cmd/spice/spice.go
Expand Down
3 changes: 2 additions & 1 deletion cmd/spice/spice.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ package main
import (
"context"
"fmt"
hooks "hooks"
"hwauthz/spicedb/migrate"
"os"
"os/exec"
Expand Down Expand Up @@ -86,7 +87,7 @@ func getClient() *authzed.Client {

// migrateCmd is the <migrate> command handler
func migrateCmd() {
migrate.Migrate(context.Background(), CLI.Directory, getClient())
migrate.Migrate(context.Background(), CLI.Directory, getClient(), hooks.Hooks)
}

// schemaCmd is the <schema> command handler
Expand Down
96 changes: 0 additions & 96 deletions gen/dart/lib/services/user_svc/v1/organization_svc.pb.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 0 additions & 20 deletions gen/dart/lib/services/user_svc/v1/organization_svc.pbgrpc.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 0 additions & 23 deletions gen/dart/lib/services/user_svc/v1/organization_svc.pbjson.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

142 changes: 0 additions & 142 deletions gen/dart/lib/services/user_svc/v1/user_svc.pb.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading