user35559
user35559

Reputation: 1048

Customizing SecureSocial module with play framework

This is a beginner question with regard to using the SecureSocial(version 0.2.3 module with play framework (1.2.4)

Upvotes: 3

Views: 1269

Answers (2)

Somatik
Somatik

Reputation: 4743

you can mount the routes to / instead of /auth

 *     /                       module:securesocial

You can also define your own routes for the securesocial contollers, remove the module:securesocial line and copy the securesocial routes file contents into your own routes file with different mount points.

For the login page it can be customized by copying it from the securesocial module source (app/views) to app/views/securesocial/SecureSocial/ folder in your own project

Do not forget to check for changes when you switch to a new securesocial version.

Upvotes: 4

Gedzis
Gedzis

Reputation: 33

There is routes file for this module too. You can try to edit this one and configure your app

Upvotes: 0

Related Questions