From 9ccea7116a74e07b5a05f9250ca10a94d04d61a2 Mon Sep 17 00:00:00 2001 From: Mikael Karlsson <mikael.karlsson@jayway.com> Date: Sun, 26 Aug 2012 07:59:40 -0400 Subject: [PATCH] Add 2 missing '=' in the English language file. --- src/com/gitblit/IUserService.java | 18 +++++++++++++++++- 1 files changed, 17 insertions(+), 1 deletions(-) diff --git a/src/com/gitblit/IUserService.java b/src/com/gitblit/IUserService.java index c3573db..8822d02 100644 --- a/src/com/gitblit/IUserService.java +++ b/src/com/gitblit/IUserService.java @@ -46,6 +46,22 @@ * @since 1.0.0 */ boolean supportsCredentialChanges(); + + /** + * Does the user service support changes to user display name? + * + * @return true or false + * @since 1.0.0 + */ + boolean supportsDisplayNameChanges(); + + /** + * Does the user service support changes to user email address? + * + * @return true or false + * @since 1.0.0 + */ + boolean supportsEmailAddressChanges(); /** * Does the user service support changes to team memberships? @@ -68,7 +84,7 @@ * @param model * @return cookie value */ - char[] getCookie(UserModel model); + String getCookie(UserModel model); /** * Authenticate a user based on their cookie. -- Gitblit v1.9.1