Documentation for Lab.
Gets all projects available for the authenticated user
Gets all projects available for the authenticated user.
Returns {:ok, [%{id: 1}, %{id: 2}, ...]}.
{:ok, [%{id: 1}, %{id: 2}, ...]}
iex> Lab.projects {:ok, [%{id: 1}, %{id: 2}, %{id: 3}]} iex> Lab.projects(per_page: 2) {:ok, [%{id: 1}, %{id: 2}]}