Skip to content
This repository has been archived by the owner on Jan 27, 2021. It is now read-only.

Commit

Permalink
Refactor identifier field names
Browse files Browse the repository at this point in the history
As tracked in #32 we
want to have consistent naming for the identifier fields. This is better
now.
  • Loading branch information
kulmann committed Jul 6, 2020
1 parent 69693c5 commit b1bebcf
Show file tree
Hide file tree
Showing 16 changed files with 313 additions and 313 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -173,19 +173,19 @@ $(PROTO_SRC)/settings.pb.go: $(PROTO_SRC)/settings.proto
protoc \
-I=third_party/ \
-I=$(PROTO_SRC)/ \
--go_out=$(PROTO_SRC) settings.proto
--go_out=. settings.proto

$(PROTO_SRC)/settings.pb.micro.go: $(PROTO_SRC)/settings.proto
protoc \
-I=third_party/ \
-I=$(PROTO_SRC)/ \
--micro_out=$(PROTO_SRC) settings.proto
--micro_out=. settings.proto

$(PROTO_SRC)/settings.pb.web.go: $(PROTO_SRC)/settings.proto
protoc \
-I=third_party/ \
-I=$(PROTO_SRC)/ \
--microweb_out=$(PROTO_SRC) settings.proto
--microweb_out=. settings.proto

$(PROTO_SRC)/settings.swagger.json: $(PROTO_SRC)/settings.proto
protoc \
Expand Down
6 changes: 3 additions & 3 deletions pkg/assets/embed.go

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions pkg/flagset/flagset.go
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ func ServerWithConfig(cfg *config.Config) []cli.Flag {
},
&cli.StringFlag{
Name: "mount-path",
Value: "/var/tmp/ocis-settings",
Usage: "Mount path for the storage",
EnvVars: []string{"SETTINGS_ROOT_MOUNT_PATH"},
Destination: &cfg.Storage.RootMountPath,
Expand Down
393 changes: 196 additions & 197 deletions pkg/proto/v0/settings.pb.go

Large diffs are not rendered by default.

Loading

0 comments on commit b1bebcf

Please sign in to comment.