Skip to content

Commit

Permalink
feat(authentication-service): rerstore device info in auth user (#807)
Browse files Browse the repository at this point in the history
BREAKING CHANGE:
restore deviceinfo in auth user

gh-800

Co-authored-by: akshatdubeysf <77672713+akshatdubeysf@users.noreply.github.com>
  • Loading branch information
yeshamavani and akshatdubeysf authored May 27, 2022
1 parent 68d96cf commit f7fe285
Show file tree
Hide file tree
Showing 3 changed files with 15,826 additions and 7,834 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
# This workflow contains a single job called "build"
npm_audit:
# The type of runner that the job will run on
runs-on: my-custom-runner
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand All @@ -26,7 +26,7 @@ jobs:
uses: m19c/action-lerna@1.0.0
with:
args: 'bootstrap'

- name: lerna-lint
uses: m19c/action-lerna@1.0.0
with:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,14 @@ export class AuthUser extends User implements IAuthUserWithPermissions {
})
externalAuthToken?: string;

@property({
type: 'object',
description: `This property consists of two optional fields.
1. userAgent
2. deviceId `,
})
deviceInfo?: DeviceInfo;

@property({
type: 'number',
})
Expand Down
Loading

0 comments on commit f7fe285

Please sign in to comment.