Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
Openfire
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Openfire
Commits
27686cd2
Commit
27686cd2
authored
Oct 08, 2014
by
daryl herzmann
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #77 from Redor/openfire
User service plugin update to 2.0.2
parents
1d714158
d58f29ea
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
2 deletions
+12
-2
changelog.html
src/plugins/userservice/changelog.html
+5
-0
plugin.xml
src/plugins/userservice/plugin.xml
+2
-2
AuthFilter.java
...src/java/org/jivesoftware/openfire/plugin/AuthFilter.java
+5
-0
No files found.
src/plugins/userservice/changelog.html
View file @
27686cd2
...
...
@@ -44,6 +44,11 @@
User Service Plugin Changelog
</h1>
<p><b>
2.0.2
</b>
-- October 8th, 2014
</p>
<ul>
<li>
Fixed the problem with backward compatibility to user service 1.*
</li>
</ul>
<p><b>
2.0.1
</b>
-- October 7th, 2014
</p>
<ul>
<li>
Fixed the problem that authentication type was not saved
</li>
...
...
src/plugins/userservice/plugin.xml
View file @
27686cd2
...
...
@@ -5,8 +5,8 @@
<name>
User Service
</name>
<description>
Allows administration of users via HTTP requests.
</description>
<author>
Roman Soldatow, Justin Hunt
</author>
<version>
2.0.
1
</version>
<date>
10/0
7
/2014
</date>
<version>
2.0.
2
</version>
<date>
10/0
8
/2014
</date>
<minServerVersion>
3.9.0
</minServerVersion>
<adminconsole>
...
...
src/plugins/userservice/src/java/org/jivesoftware/openfire/plugin/AuthFilter.java
View file @
27686cd2
...
...
@@ -64,6 +64,11 @@ public class AuthFilter implements ContainerRequestFilter {
}
}
// To be backwards compatible to userservice 1.*
if
(
"userService/userservice"
.
equals
(
containerRequest
.
getPath
()))
{
return
containerRequest
;
}
// Get the authentification passed in HTTP headers parameters
String
auth
=
containerRequest
.
getHeaderValue
(
"authorization"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment