Sha256: 0ecdec532d5fcd0c743a35f51d1d57064ae40228eecfd54815d2e69b35c662ec

Contents?: true

Size: 947 Bytes

Versions: 32

Compression:

Stored size: 947 Bytes

Contents

# Copyright © 2012 The Pennsylvania State University
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

class Follow < ActiveRecord::Base

  extend ActsAsFollower::FollowerLib
  extend ActsAsFollower::FollowScopes

  # NOTE: Follows belong to the "followable" interface, and also to followers
  belongs_to :followable, :polymorphic => true
  belongs_to :follower,   :polymorphic => true

  def block!
    self.update_attribute(:blocked, true)
  end

end

Version data entries

32 entries across 32 versions & 2 rubygems

Version Path
sufia-3.1.2 sufia-models/app/models/follow.rb
sufia-models-3.1.2 app/models/follow.rb
sufia-3.1.1 sufia-models/app/models/follow.rb
sufia-models-3.1.1 app/models/follow.rb
sufia-3.1.0 sufia-models/app/models/follow.rb
sufia-models-3.1.0 app/models/follow.rb
sufia-3.0.0 sufia-models/app/models/follow.rb
sufia-models-3.0.0 app/models/follow.rb
sufia-2.0.1 sufia-models/app/models/follow.rb
sufia-models-2.0.1 app/models/follow.rb
sufia-2.0.0 sufia-models/app/models/follow.rb
sufia-models-2.0.0 app/models/follow.rb
sufia-models-0.1.2 app/models/follow.rb
sufia-models-0.1.1 app/models/follow.rb
sufia-1.3.0 app/models/follow.rb
sufia-models-0.1.0 app/models/follow.rb
sufia-models-0.0.2 app/models/follow.rb
sufia-models-0.0.1 app/models/follow.rb
sufia-1.2.0 app/models/follow.rb
sufia-1.1.0 app/models/follow.rb