'use strict'

angular.module('payrollhero.api').factory 'PhTimeApiBase', (PhRestangularBase, PhApiHelper, TimeApiBaseUri) ->
  PhRestangularBase.withConfig (config) ->
    true
  .setBaseUrl(TimeApiBaseUri + "/v2")
  .setErrorInterceptor (response) ->
    response.errorMessage = PhApiHelper.errorMessageFor(response)
    true
