Sha256: 8acc618db4ea628a05ff9b607ec72bf9f3450cf58c8e0c5dcb0098eba3632b2a

Contents?: true

Size: 1.29 KB

Versions: 2

Compression:

Stored size: 1.29 KB

Contents

# encoding: ascii-8bit

# Copyright 2022 Ball Aerospace & Technologies Corp.
# All Rights Reserved.
#
# This program is free software; you can modify and/or redistribute it
# under the terms of the GNU Affero General Public License
# as published by the Free Software Foundation; version 3 with
# attribution addendums as found in the LICENSE.txt
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Affero General Public License for more details.
#
# This program may also be used under the terms of a commercial or
# enterprise edition license of COSMOS if purchased from the
# copyright holder

require 'cosmos/topics/topic'

module Cosmos
  class CalendarTopic < Topic
    PRIMARY_KEY = '__cosmos_calendar'.freeze

    # Write an activity to the topic
    #
    # ```json
    #  {
    #    "type" => "metadata",
    #    "kind" => "created",
    #    "metadata" => {
    #      "target" => "FOO",
    #      "start" => 1621875570,
    #      "color" => "#FF0000",
    #      "metadata" => {"test"=>"123456"}
    #    },
    #  }
    # ```
    def self.write_entry(entry, scope:)
      Topic.write_topic("#{scope}#{PRIMARY_KEY}", entry, '*', 1000)
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cosmos-5.0.5 lib/cosmos/topics/calendar_topic.rb
cosmos-5.0.4 lib/cosmos/topics/calendar_topic.rb