# frozen_string_literal: true module Bearcat class Client < Footrest::Client module LearningOutcomes def learning_outcome(outcome, params={}) get("/api/v1/outcomes/#{outcome}", params) end def update_learning_outcome(outcome, params={}) put("/api/v1/outcomes/#{outcome}", params) end end end end