summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/models/snippet.rb7
1 files changed, 5 insertions, 2 deletions
diff --git a/app/models/snippet.rb b/app/models/snippet.rb
index 7018dc67ab7..1d454801315 100644
--- a/app/models/snippet.rb
+++ b/app/models/snippet.rb
@@ -30,9 +30,12 @@ class Snippet < ActiveRecord::Base
validates :content, presence: true
# Scopes
- scope :fresh, -> { order("created_at DESC") }
- scope :non_expired, -> { where(["expires_at IS NULL OR expires_at > ?", Time.current]) }
+ scope :public, -> { where(private: false) }
+ scope :private, -> { where(private: true) }
+ scope :fresh, -> { order("created_at DESC") }
scope :expired, -> { where(["expires_at IS NOT NULL AND expires_at < ?", Time.current]) }
+ scope :has_project, -> { where("bars.id IS NOT NULL") }
+ scope :non_expired, -> { where(["expires_at IS NULL OR expires_at > ?", Time.current]) }
def self.content_types
[