Commit 81b70120 authored by Andrei Mihu's avatar Andrei Mihu
Browse files

Allow user account password updates from the developer console.

parent 3be95e17
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -6,6 +6,7 @@ The format is based on [keep a changelog](http://keepachangelog.com) and this pr
## [Unreleased]
### Added
- Custom events API for client and runtime events.
- Allow user account password updates from the developer console.

### Changed
- Default runtime HTTP key value is no longer the same as the default Server key value.
+0 −6
Original line number Diff line number Diff line
@@ -35,9 +35,6 @@ fi

protoc_flags=(-I/usr/local/include -I../ -I$GOPATH/src -I$GOPATH/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis -I$GOPATH/src/github.com/grpc-ecosystem/grpc-gateway)

#api_pbfile="../api/api.proto"
#protoc "${protoc_flags[@]}" "--go_out=plugins=grpc:../" "${api_pbfile}" || exit 1

apigrpc_pbfile="../apigrpc/apigrpc.proto"
protoc "${protoc_flags[@]}" "--go_out=plugins=grpc:../" "${apigrpc_pbfile}" || exit 1
protoc "${protoc_flags[@]}" "--grpc-gateway_out=logtostderr=true:../" "${apigrpc_pbfile}" || exit 1
@@ -47,6 +44,3 @@ console_pbfile="../console/console.proto"
protoc "${protoc_flags[@]}" "--go_out=plugins=grpc:../" "${console_pbfile}" || exit 1
protoc "${protoc_flags[@]}" "--grpc-gateway_out=logtostderr=true:../" "${console_pbfile}" || exit 1
protoc "${protoc_flags[@]}" "--swagger_out=logtostderr=true:../" "${console_pbfile}" || exit 1

#rtapi_pbfile="../rtapi/realtime.proto"
#protoc "${protoc_flags[@]}" "--go_out=plugins=grpc:../" "${rtapi_pbfile}" || exit 1
+6 −6

File changed.

Preview size limit exceeded, changes collapsed.

+163 −153

File changed.

Preview size limit exceeded, changes collapsed.

+4 −2
Original line number Diff line number Diff line
@@ -399,10 +399,12 @@ message UpdateAccountRequest {
  google.protobuf.StringValue custom_id = 9;
  // Email.
  google.protobuf.StringValue email = 10;
  // Password.
  google.protobuf.StringValue password = 11;
  // Device ID modifications.
  map<string, string> device_ids = 11;
  map<string, string> device_ids = 12;
  // Wallet.
  google.protobuf.StringValue wallet = 12;
  google.protobuf.StringValue wallet = 13;
}

// A list of users.
Loading