Sha256: 9da40a6d1f3ef7e24a9953f24db12bb45a7e7f960ee1a1e0673da5aad5fabf66

Contents?: true

Size: 227 Bytes

Versions: 3

Compression:

Stored size: 227 Bytes

Contents

class AriclesController < ApplicationController
  before_action :set_article
  before_action :add_user_history

  def show
  end

  private

  def set_article
    @article = Article.new
  end

  def add_user_history

  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
browsing_history-0.0.4 spec/test_app/app/controllers/articles_controller.rb
browsing_history-0.0.3 spec/test_app/app/controllers/articles_controller.rb
browsing_history-0.0.2 spec/test_app/app/controllers/articles_controller.rb