feat: Move to passport for authentication (#1934)
- Added `accountProvisioner` - Move authentication to use passport strategies - Make authentication more pluggable - Change language of services -> providers closes #1120
This commit is contained in:
@ -6,9 +6,6 @@ it("presents a user", async () => {
|
||||
id: "123",
|
||||
name: "Test User",
|
||||
username: "testuser",
|
||||
slackData: {
|
||||
image_192: "http://example.com/avatar.png",
|
||||
},
|
||||
});
|
||||
|
||||
expect(user).toMatchSnapshot();
|
||||
@ -19,7 +16,6 @@ it("presents a user without slack data", async () => {
|
||||
id: "123",
|
||||
name: "Test User",
|
||||
username: "testuser",
|
||||
slackData: null,
|
||||
});
|
||||
|
||||
expect(user).toMatchSnapshot();
|
||||
|
Reference in New Issue
Block a user