diff options
Diffstat (limited to 'app/models/snippet.rb')
| -rw-r--r-- | app/models/snippet.rb | 8 | 
1 files changed, 6 insertions, 2 deletions
| diff --git a/app/models/snippet.rb b/app/models/snippet.rb index aa2e3a1ff18..98ccf5f331f 100644 --- a/app/models/snippet.rb +++ b/app/models/snippet.rb @@ -27,9 +27,9 @@ class Snippet < ActiveRecord::Base    delegate :name, :email, to: :author, prefix: true, allow_nil: true    validates :author, presence: true -  validates :title, presence: true, length: { within: 0..255 } +  validates :title, presence: true, length: { maximum: 255 }    validates :file_name, -    length: { within: 0..255 }, +    length: { maximum: 255 },      format: { with: Gitlab::Regex.file_name_regex,                message: Gitlab::Regex.file_name_regex_message } @@ -94,6 +94,10 @@ class Snippet < ActiveRecord::Base      0    end +  def file_name +    super.to_s +  end +    # alias for compatibility with blobs and highlighting    def path      file_name | 
