# frozen_string_literal: true module Articles class IndexAction < ApplicationAction expose :articles def perform @articles = ArticleRepository.new.all end end end