Skip to content

Commit

Permalink
feat(vpn): impl. server and ca cert expiration indicators
Browse files Browse the repository at this point in the history
Expiration indicators for server and CA is added to the both webui and cli.

Closes cad#59
  • Loading branch information
cad committed Apr 5, 2018
1 parent 46982f2 commit fbc7ddb
Show file tree
Hide file tree
Showing 20 changed files with 325 additions and 105 deletions.
111 changes: 60 additions & 51 deletions api/pb/user.pb.go

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

1 change: 1 addition & 0 deletions api/pb/user.proto
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ message UserResponse {
string connected_since = 10;
uint64 bytes_sent = 11;
uint64 bytes_received = 12;
string expires_at = 13;
}

repeated User users = 1;
Expand Down
88 changes: 53 additions & 35 deletions api/pb/vpn.pb.go

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

2 changes: 2 additions & 0 deletions api/pb/vpn.proto
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ message VPNStatusResponse {
string created_at = 9;
string proto = 10;
string dns = 11;
string expires_at = 12;
string ca_expires_at = 13;
}
message VPNInitResponse {}
message VPNUpdateResponse {}
Expand Down
Loading

0 comments on commit fbc7ddb

Please sign in to comment.