class GdsApi::LocalLinksManager

def local_authority(authority_slug)

def local_authority(authority_slug)
  url = "#{endpoint}/api/local-authority?authority_slug=#{authority_slug}"
  get_json(url)
end

def local_link(authority_slug, lgsl, lgil)

def local_link(authority_slug, lgsl, lgil)
  url = "#{endpoint}/api/link?authority_slug=#{authority_slug}&lgsl=#{lgsl}&lgil=#{lgil}"
  get_json(url)
end