Sha256: fae1959d6d2601483050befc0a95efe413b725ef22e2291b585013dd75c533d6
Contents?: true
Size: 553 Bytes
Versions: 2
Compression:
Stored size: 553 Bytes
Contents
module Types class RecurringLogic < Types::BaseObject description 'A Recurring Logic' model_class ::ForemanTasks::RecurringLogic global_id_field :id field :cron_line, String field :end_time, GraphQL::Types::ISO8601DateTime field :max_iteration, Integer field :iteration, Integer field :state, String field :purpose, String belongs_to :triggering, Types::Triggering def self.graphql_definition super.tap { |type| type.instance_variable_set(:@name, 'ForemanTasks::RecurringLogic') } end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
foreman-tasks-5.1.1 | app/graphql/types/recurring_logic.rb |
foreman-tasks-5.1.0 | app/graphql/types/recurring_logic.rb |