Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add custom fetcher config option #90

Open
wants to merge 8 commits into
base: master
Choose a base branch
from

Conversation

jkcorrea
Copy link

@jkcorrea jkcorrea commented Feb 6, 2021

Adds an option to use your own fetch function:

import { Model, SpraypaintBase } from 'spraypaint'
import ky from 'ky'

const apiClient = ky.extend({})

@Model()
class ApplicationRecord extends SpraypaintBase {
  static fetcher = apiClient
}

baseUrl: "http://example.com",
apiNamespace: "/api/v1"
})
class Base extends SpraypaintBase {}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Mind adding a spec which ensures that setting a single fetcher in the base class will allow both subclasses to use it?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants