Class: Calendav::Credentials::FastMail

Inherits:
Standard
  • Object
show all
Defined in:
lib/calendav/credentials/fastmail.rb

Instance Attribute Summary

Attributes inherited from Standard

#authentication, #host, #password, #username

Instance Method Summary collapse

Constructor Details

#initialize(username:, password:) ⇒ FastMail

Returns a new instance of FastMail.



11
12
13
14
15
16
17
# File 'lib/calendav/credentials/fastmail.rb', line 11

def initialize(username:, password:)
  super(
    host: "https://caldav.fastmail.com/dav/",
    username: username,
    password: password
  )
end