Skip to content
Snippets Groups Projects
Commit f5c6baf2 authored by Eugen Rochko's avatar Eugen Rochko
Browse files

Fix account and hashtag regex

parent c3559d18
No related branches found
No related tags found
No related merge requests found
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
......
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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment