reorganized

This commit is contained in:
Wyatt Johnson
2018-04-20 13:17:57 -06:00
parent 7d644115d1
commit 10d27357f4
12 changed files with 41 additions and 19 deletions
-1
View File
@@ -7,7 +7,6 @@ plugin:
default: true
provides:
- Client
- Server
---
This provides the base plugin that is the basis for all auth based plugins that
+1 -11
View File
@@ -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 = {};
+20
View File
@@ -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.**
+11
View File
@@ -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,
};