0

Audited 适用于当前版本和以前的版本。我想要的是再有一个版本,一个未来的版本,又名草稿。

所需场景

对象的当前版本在任何地方都使用。但是,在管理屏幕中,您可以访问和编辑对象的未来/草稿版本。这允许您进行其他人尚不可见的修改。当草稿准备好后,您将其发布,使其成为所有地方使用的当前版本。

我没有看到对此的任何支持。

  1. 我错过了什么吗?这支持吗?
  2. 是否有某种经过审核的黑客可以支持这一点,即使以丑陋的方式?
  3. 如果对上述内容不满意,这似乎可以通过 Audited gem 合理地完成,还是我最好使用不同的方法?
4

1 回答 1

0

我没有使用 Audited gem 来提供“草稿”模式。相反,我在模型中添加了一个名为active的布尔值,并声明

 default_scope { where(active: true) }
 scope :active, -> { where(active: true )  }
 scope :draft,  -> { where(active: false)  }

然后,在控制器中,管理员查看草稿项的方法:

def in_draft
  # Admins can see all items in draft status.
  # Sellers can see only their own items in draft status.
  # Buyers can't get here at all because of the authorizations
  if current_tuser.role == "Themadmin"
    @seller_listings = Listing.unscoped.draft
  end
end

最后,在控制器中发布项目的方法:

80   def publish
 81     @listing = Listing.unscoped.find(params[:id])
 82     @listing.active = true
 83     respond_to do |format|
 84       if @listing.save!
 85         format.html {redirect_to @listing, notice: 'Listing changed from draft to published.'}
 86       else
 87         format.html {redirect_to @listing, notice: 'Something went wrong'}
 88       end
 89     end
 90   end
于 2018-11-14T05:25:34.323 回答