zammad/zammad

View on GitHub
app/graphql/gql/types/concerns/has_default_model_user_relations.rb

Summary

Maintainability
A
0 mins
Test Coverage
# Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/

module Gql::Types::Concerns::HasDefaultModelUserRelations
  extend ActiveSupport::Concern

  included do
    belongs_to :created_by, Gql::Types::UserType, description: 'User that created this record'
    belongs_to :updated_by, Gql::Types::UserType, description: 'Last user that updated this record'
  end
end