Experimental support for synapse REST auth module

- See https://github.com/maxidor/matrix-synapse-rest-auth
- Include Google Firebase backend using UID as login and user token as password
This commit is contained in:
Maxime Dor
2017-08-31 02:10:36 +02:00
parent 1c43ca7666
commit 0033d0dc1d
7 changed files with 357 additions and 0 deletions

View File

@@ -32,6 +32,7 @@ buildscript {
}
repositories {
maven { url "https://kamax.io/maven/releases/" }
mavenCentral()
}
@@ -45,6 +46,9 @@ dependencies {
// Spring Boot - standalone app
compile 'org.springframework.boot:spring-boot-starter-web:1.5.3.RELEASE'
// Matrix Java SDK
compile 'io.kamax:matrix-java-sdk:0.0.1'
// ed25519 handling
compile 'net.i2p.crypto:eddsa:0.1.0'
@@ -63,6 +67,9 @@ dependencies {
// Phone numbers validation
compile 'com.googlecode.libphonenumber:libphonenumber:8.7.1'
// Google Firebase Authentication backend
compile 'com.google.firebase:firebase-admin:5.3.0'
testCompile 'junit:junit:4.12'
}