forked from coralproject/talk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
41 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,26 @@ | ||
{ | ||
"server": [ | ||
"talk-plugin-auth", | ||
"talk-plugin-featured-comments", | ||
"talk-plugin-respect", | ||
"talk-plugin-profile-data" | ||
"talk-plugin-local-auth", | ||
"talk-plugin-profile-data", | ||
"talk-plugin-respect" | ||
], | ||
"client": [ | ||
"talk-plugin-auth", | ||
"talk-plugin-author-menu", | ||
"talk-plugin-featured-comments", | ||
"talk-plugin-flag-details", | ||
"talk-plugin-ignore-user", | ||
"talk-plugin-local-auth", | ||
"talk-plugin-member-since", | ||
"talk-plugin-moderation-actions", | ||
"talk-plugin-permalink", | ||
"talk-plugin-profile-data", | ||
"talk-plugin-respect", | ||
"talk-plugin-sort-most-replied", | ||
"talk-plugin-sort-most-respected", | ||
"talk-plugin-sort-newest", | ||
"talk-plugin-sort-oldest", | ||
"talk-plugin-viewing-options", | ||
"talk-plugin-profile-data" | ||
"talk-plugin-viewing-options" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1 @@ | ||
const typeDefs = require('./server/typeDefs'); | ||
const resolvers = require('./server/resolvers'); | ||
const mutators = require('./server/mutators'); | ||
const path = require('path'); | ||
|
||
module.exports = { | ||
translations: path.join(__dirname, 'server', 'translations.yml'), | ||
typeDefs, | ||
mutators, | ||
resolvers, | ||
}; | ||
module.exports = {}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
title: talk-plugin-local-auth | ||
permalink: /plugin/talk-plugin-local-auth/ | ||
layout: plugin | ||
plugin: | ||
name: talk-plugin-local-auth | ||
default: true | ||
provides: | ||
- Client | ||
- Server | ||
--- | ||
|
||
This plugin will eventually contain all the local authentication code that is | ||
responsible for creating, resetting, and managing accounts provided locally | ||
through an email and password based login. | ||
|
||
## Features | ||
|
||
- *Email Change*: Allows users to change their existing email address on their account. | ||
- *Local Account Association*: Allows users that have signed up with an external auth strategy (such as Google) the ability to associate a email address and password for login. **Note: Existing users with external authentication will be prompted to setup a local account when they sign in and when new users create an account.** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
const typeDefs = require('./server/typeDefs'); | ||
const resolvers = require('./server/resolvers'); | ||
const mutators = require('./server/mutators'); | ||
const path = require('path'); | ||
|
||
module.exports = { | ||
translations: path.join(__dirname, 'server', 'translations.yml'), | ||
typeDefs, | ||
mutators, | ||
resolvers, | ||
}; |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.