Sha256: 52d25437ba2ad32ebef63193760bcd96e3101f50a3ca2c10f2004d8a4aca348e

Contents?: true

Size: 517 Bytes

Versions: 1

Compression:

Stored size: 517 Bytes

Contents

module Evertils
  module Common
    module Manager
      class Note < Manager::Base

        #
        # @since 0.3.0
        def create(config)
          entity = Evertils::Common::Entity::Note.new
          entity.create(config[:name], config[:body], config[:notebook], config[:files], config[:shared], config[:created_on])
        end

        #
        # @since 0.3.0
        def find(name)
          entity = Evertils::Common::Entity::Note.new
          entity.find(name)
        end

      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
evertils-common-0.3.0 lib/evertils/common/manager/note.rb