This website works better with JavaScript.
Home
Explore
Help
Sign In
nekobus
/
mastodon_neko
forked from
closed-social/mastodon
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Fix account and hashtag regex
master
Eugen Rochko
8 years ago
parent
c3559d18a3
commit
f5c6baf29d
2 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
app/models/account.rb
+1
-1
app/models/tag.rb
+ 1
- 1
app/models/account.rb
View File
@ -1,7 +1,7 @@
class
Account
<
ApplicationRecord
include
Targetable
MENTION_RE
=
/
(?:^|[
\
s
\
.>*+
])@([a-z0-9_]+(?:@[a-z0-9
\
.
\
-]+)?)
/i
MENTION_RE
=
/
(?:^|[
^
\/
\
w
])@([a-z0-9_]+(?:@[a-z0-9
\
.
\
-]+)?)
/i
IMAGE_MIME_TYPES
=
[
'image/jpeg'
,
'image/png'
,
'image/gif'
]
.
freeze
# Local users
+ 1
- 1
app/models/tag.rb
View File
@ -1,7 +1,7 @@
class
Tag
<
ApplicationRecord
has_and_belongs_to_many
:statuses
HASHTAG_RE
=
/
[?:^|
\
s|
\
.|>]
#
([[:word:]_]+)
/i
HASHTAG_RE
=
/
(?:^|[^
\/
\
w])
#
([[:word:]_]+)
/i
validates
:name
,
presence
:
true
,
uniqueness
:
true
Write
Preview
Loading…
Cancel
Save