Commit e3b799b1 authored by Mo Firouz's avatar Mo Firouz
Browse files

Add total row to console status page. (#556)

parent 1ab25e2b
Loading
Loading
Loading
Loading
+49 −49

File changed.

Preview size limit exceeded, changes collapsed.

+670 −657

File changed.

Preview size limit exceeded, changes collapsed.

+2 −0
Original line number Diff line number Diff line
@@ -401,6 +401,8 @@ message AddUserRequest {
  string email = 3;
  // Role of this user;
  UserRole role = 4;
  // Subscribe to newsletters
  bool newsletter_subscription = 5;
}

// API Explorer List of Endpoints
+9 −0
Original line number Diff line number Diff line
@@ -9,6 +9,11 @@
      "email": "hello@heroiclabs.com"
    }
  },
  "tags": [
    {
      "name": "Console"
    }
  ],
  "host": "127.0.0.1:7351",
  "schemes": [
    "http"
@@ -2223,6 +2228,10 @@
        "role": {
          "$ref": "#/definitions/consoleUserRole",
          "title": "Role of this user;"
        },
        "newsletterSubscription": {
          "type": "boolean",
          "title": "Subscribe to newsletters"
        }
      },
      "title": "Add a new console user"
+1 −0
Original line number Diff line number Diff line
@@ -585,6 +585,7 @@ export interface AddUserRequest {
  password?: string
  email?: string
  role?: UserRole
  newsletter_subscription?: boolean
}

export interface ApiEndpointDescriptor {
Loading