Sha256: f36b5582ac37dea9a97e3200a8bc970b0d36fc050a8b4faf605a1edacfbed258

Contents?: true

Size: 738 Bytes

Versions: 18

Compression:

Stored size: 738 Bytes

Contents

# frozen_string_literal: true

module EveOnline
  module ESI
    class CharacterNotifications < Base
      API_PATH = "/v5/characters/%<character_id>s/notifications/"

      attr_reader :character_id

      def initialize(options)
        super

        @character_id = options.fetch(:character_id)
      end

      def notifications
        @notifications ||=
          begin
            output = []
            response.each do |notification|
              output << Models::Notification.new(notification)
            end
            output
          end
      end

      def scope
        "esi-characters.read_notifications.v1"
      end

      def path
        format(API_PATH, character_id: character_id)
      end
    end
  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
eve_online-0.46.0 lib/eve_online/esi/character_notifications.rb
eve_online-0.45.0 lib/eve_online/esi/character_notifications.rb
eve_online-0.44.0 lib/eve_online/esi/character_notifications.rb
eve_online-0.43.0 lib/eve_online/esi/character_notifications.rb
eve_online-0.42.0 lib/eve_online/esi/character_notifications.rb
eve_online-0.41.0 lib/eve_online/esi/character_notifications.rb
eve_online-0.40.0 lib/eve_online/esi/character_notifications.rb
eve_online-0.39.0 lib/eve_online/esi/character_notifications.rb
eve_online-0.38.0 lib/eve_online/esi/character_notifications.rb
eve_online-0.37.0 lib/eve_online/esi/character_notifications.rb
eve_online-0.36.0 lib/eve_online/esi/character_notifications.rb
eve_online-0.35.1 lib/eve_online/esi/character_notifications.rb
eve_online-0.35.0 lib/eve_online/esi/character_notifications.rb
eve_online-0.34.0 lib/eve_online/esi/character_notifications.rb
eve_online-0.33.0 lib/eve_online/esi/character_notifications.rb
eve_online-0.32.0 lib/eve_online/esi/character_notifications.rb
eve_online-0.31.0 lib/eve_online/esi/character_notifications.rb
eve_online-0.30.0 lib/eve_online/esi/character_notifications.rb