module Service::FossIdentity

Public Instance Methods

sign_out(path, cookie) click to toggle source
# File lib/service/foss_identity.rb, line 8
def sign_out(path, cookie)
  resp = Net::HTTP.post(
      URI(path),
      nil,
      "Cookie" => cookie
  )
  resp
end