Skip to content
This repository has been archived by the owner on Feb 10, 2021. It is now read-only.

Commit

Permalink
Merge pull request #348 from Serchinastico/patch-1
Browse files Browse the repository at this point in the history
Fix headers
  • Loading branch information
joscha committed Aug 30, 2017
2 parents c098ffc + 8265915 commit eedf45a
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions 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.
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -151,7 +151,7 @@ This second example displays some account information:
}
}

##Routes
## Routes
---
Add the following routes to your `conf/routes` file:

Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -331,7 +331,7 @@ Here is an example implementation of the UserServicePlugin:
}


##Adding Authentication Providers
## Adding Authentication Providers
---

### Google Authentication Provider
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit eedf45a

Please sign in to comment.