From 82659158b6651d78d7b1c34dbe5392a81abc7831 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20Guti=C3=A9rrez?= Date: Wed, 30 Aug 2017 17:11:19 +0200 Subject: [PATCH] Fix headers --- samples/java/Getting Started.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/samples/java/Getting Started.md b/samples/java/Getting Started.md index dae3bd46..b434627b 100644 --- a/samples/java/Getting Started.md +++ b/samples/java/Getting Started.md @@ -1,7 +1,7 @@ -#Getting Started +# Getting Started -##Importing the Plugin +## Importing the Plugin --- Add Play-Authenticate to your app dependencies. This is done by modifying the `project/Build.scala` file. @@ -34,7 +34,7 @@ Add `"com.feth" %% "play-authenticate" % "0.8.0-SNAPSHOT"` (`0.8.0` might } -##Configuration File +## Configuration File --- Create a new file `play-authenticate/mine.conf` in your conf folder. Include this file in your `application.conf` by adding the following line to it: @@ -100,7 +100,7 @@ For a real application you can use the following template ([source](https://gith } -##Creating the necessary views +## Creating the necessary views --- You have to integrate Play-Authenticate into your views by yourself. Play-Authenticate provides some template helpers to do this. @@ -151,7 +151,7 @@ This second example displays some account information: } } -##Routes +## Routes --- Add the following routes to your `conf/routes` file: @@ -171,7 +171,7 @@ Below you can see an example implementation of this method (this.auth is instanc } -##Configure the Resolver +## Configure the Resolver --- Play-Authenticate needs some pages provided by your application. You configure these pages by providing @@ -249,7 +249,7 @@ TODO explain Resolver interface and its methods Of course you have to create the pages to which the resolver refers by yourself. -##User Service +## User Service --- We yet have to tell Play-Authenticate how to store users in a database. This is done by creating a sub class @@ -331,7 +331,7 @@ Here is an example implementation of the UserServicePlugin: } -##Adding Authentication Providers +## Adding Authentication Providers --- ### Google Authentication Provider @@ -378,7 +378,7 @@ own keys. The keys above are not valid. TODO short description for other providers. -##Adding Access Control +## Adding Access Control --- TODO