Module: LeanKitKanban::Archive
- Includes:
- HTTParty, LeanKitRequest
- Defined in:
- lib/leankitkanban/archive.rb
Constant Summary collapse
- FETCH =
"/Board/{boardID}/Archive"
Class Method Summary collapse
Methods included from LeanKitRequest
Class Method Details
permalink .fetch(board_id) ⇒ Object
[View source]
8 9 10 11 |
# File 'lib/leankitkanban/archive.rb', line 8 def self.fetch(board_id) api_call = FETCH.gsub("{boardID}", board_id.to_s) get(api_call) end |