summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2017-08-26 03:36:35 +0300
committerLauri Ojansivu <x@xet7.org>2017-08-26 03:36:35 +0300
commit777b65b1f7f732e9df65e9b6460adad6399d9f65 (patch)
tree3dff336faf132fc6abf1cabecbb5795ecbd279c6
parent84d40bd3e397165b879e15035823dcb92ad1e5ee (diff)
parent80a13be3e2bb66841643f031ecd20ee3f8cac9b9 (diff)
downloadwekan-777b65b1f7f732e9df65e9b6460adad6399d9f65.tar.gz
wekan-777b65b1f7f732e9df65e9b6460adad6399d9f65.tar.bz2
wekan-777b65b1f7f732e9df65e9b6460adad6399d9f65.zip
Merge branch 'jonasob-username-matching' into devel
Usernames can now include dots (.) Thanks to jonasob !
-rw-r--r--CHANGELOG.md7
-rw-r--r--client/components/lists/listBody.js2
-rwxr-xr-xclient/components/main/editor.js4
-rw-r--r--sandstorm.js2
4 files changed, 8 insertions, 7 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6a5cfeba..e5f93a6d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,14 +10,15 @@ This release adds the following new features:
* [Gogs integration part 1](https://github.com/wekan/wekan/pull/1189);
* [Add web manifest so Wekan can be used like standalone app on Desktop
with Chrome or Firefox](https://github.com/wekan/wekan/pull/1184);
-* [Copy card link to clipboard](https://github.com/wekan/wekan/issues/1188).
+* [Copy card link to clipboard](https://github.com/wekan/wekan/issues/1188);
+* [Usernames can now include dots (.)](https://github.com/wekan/wekan/pull/1194).
and fixes the following bugs:
* [Fix Squeezed tickbox in Card](https://github.com/wekan/wekan/pull/1171).
-Thanks to GitHub users andresmanelli, danhawkes, kubiko, nztqa and xet7
-for their contributions.
+Thanks to GitHub users andresmanelli, danhawkes, jonasob, kubiko, nztqa
+and xet7 for their contributions.
# v0.32 2017-07-30 Wekan release
diff --git a/client/components/lists/listBody.js b/client/components/lists/listBody.js
index bdc812c7..724e805b 100644
--- a/client/components/lists/listBody.js
+++ b/client/components/lists/listBody.js
@@ -180,7 +180,7 @@ BlazeComponent.extendComponent({
$textarea.escapeableTextComplete([
// User mentions
{
- match: /\B@(\w*)$/,
+ match: /\B@([\w.]*)$/,
search(term, callback) {
const currentBoard = Boards.findOne(Session.get('currentBoard'));
callback($.map(currentBoard.activeMembers(), (member) => {
diff --git a/client/components/main/editor.js b/client/components/main/editor.js
index da15407a..5987b772 100755
--- a/client/components/main/editor.js
+++ b/client/components/main/editor.js
@@ -25,7 +25,7 @@ Template.editor.onRendered(() => {
// User mentions
{
- match: /\B@(\w*)$/,
+ match: /\B@([\w.]*)$/,
search(term, callback) {
const currentBoard = Boards.findOne(Session.get('currentBoard'));
callback(currentBoard.activeMembers().map((member) => {
@@ -60,7 +60,7 @@ Blaze.Template.registerHelper('mentions', new Template('mentions', function() {
member.username = Users.findOne(member.userId).username;
return member;
});
- const mentionRegex = /\B@(\w*)/gi;
+ const mentionRegex = /\B@([\w.]*)/gi;
let content = Blaze.toHTML(view.templateContentBlock);
let currentMention;
diff --git a/sandstorm.js b/sandstorm.js
index 80910dc3..6b7c8172 100644
--- a/sandstorm.js
+++ b/sandstorm.js
@@ -188,7 +188,7 @@ if (isSandstorm && Meteor.isServer) {
caption = { defaultText: comment.text };
const activeMembers =
_.pluck(Boards.findOne(sandstormBoard._id).activeMembers(), 'userId');
- (comment.text.match(/\B@(\w*)/g) || []).forEach((username) => {
+ (comment.text.match(/\B@([\w.]*)/g) || []).forEach((username) => {
const user = Meteor.users.findOne({ username: username.slice(1)});
if (user && activeMembers.indexOf(user._id) !== -1) {
mentionedUser(user._id);