You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- /authenticate/:provider routes can now receive a 'redirectTo' parameter. This is where the user is redirected
after succesful authentication (if used overrides the url set in OriginalUrl by SecuredAction)
- ProviderController.authenticate signature changed. Breaks compatibility: routes file needs to be adjusted (see sample apps)
- Added support for linking accounts. New 'link' method in UserService needs to be implemented.
- Update messages.fr for single quotes (thanks @fmasion)
- Small fixes for NL messages (thanks @francisdb)
- Added German translation (thanks @l0rdn1kk0n)
- Added Arabic translation (thanks @ahimta)
- Added Brazilian Portuguese translation (thanks @jeohalves)
Copy file name to clipboardexpand all lines: docs/src/manual/source/guide/user-service.md
+22-1
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ file: user-service
3
3
---
4
4
# UserService
5
5
6
-
SecureSocial relies on an implementation of `UserService` to handle all the operations related to saving/finding users. Using this delegation model you are not forced to use a particular model object or a persistence mechanism but rather provide a service that translates back and forth between your models and what SecureSocial understands.
6
+
SecureSocial relies on an implementation of `UserService` to handle all the operations related to saving/finding users and linkind different external accounts to a local user. Using this delegation model you are not forced to use a particular model object or a persistence mechanism but rather provide a service that translates back and forth between your models and what SecureSocial understands.
7
7
8
8
Besides users, this service is also in charge of persisting the tokens that are used in signup and reset password requests. Some of these methods are only required if you are going to use the `UsernamePasswordProvider`. If you do not plan to use it just provide an empty implementation for them. Check the documentation in the source code to know which ones are optional.
9
9
@@ -82,6 +82,16 @@ For Scala you need to extend the `UserServicePlugin`. For example:
82
82
def save(user: Identity) {
83
83
// implement me
84
84
}
85
+
86
+
/**
87
+
* Links the current user Identity to another
88
+
*
89
+
* @param current The Identity of the current user
90
+
* @param to The Identity that needs to be linked to the current user
91
+
*/
92
+
def link(current: Identity, to: Identity) {
93
+
// implement me
94
+
}
85
95
86
96
/**
87
97
* Saves a token. This is needed for users that
@@ -154,6 +164,16 @@ For Java, you need to extend the `BaseUserService` class.
154
164
// implement me
155
165
}
156
166
167
+
/**
168
+
* Links the current user Identity to another
169
+
*
170
+
* @param current The Identity of the current user
171
+
* @param to The Identity that needs to be linked to the current user
172
+
*/
173
+
public void doLink(Identity current, Identity to) {
174
+
// implement me
175
+
}
176
+
157
177
/**
158
178
* Finds an Identity in the backing store.
159
179
* @return an Identity instance or null if no user matches the specified id
@@ -231,3 +251,4 @@ For Java, you need to extend the `BaseUserService` class.
231
251
# Important
232
252
233
253
Note that the `Token` class is implemented in Scala and Java. Make sure you import the one that matches the language you are using in your `UserService` implementation.
0 commit comments