Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion lib/pass.ex
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ defmodule Passbook.Pass do
label_color: nil,
logo_text: nil,
web_service_url: nil,
authentication_token: nil
]

@type t() :: %__MODULE__{
Expand All @@ -53,7 +54,8 @@ defmodule Passbook.Pass do
foreground_color: String.t() | nil,
label_color: String.t() | nil,
logo_text: String.t() | nil,
web_service_url: String.t() | nil
web_service_url: String.t() | nil,
authentication_token: String.t() | nil
}

def generate_json(%Passbook.Pass{} = pass) do
Expand Down