discourse/lib/faker/discourse.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
369 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'faker'
module Faker
class Discourse < Base
class << self
def tag
fetch('discourse.tags')
end
def category
fetch('discourse.categories')
end
def group
fetch('discourse.groups')
end
def topic
fetch('discourse.topics')
end
end
end
end