contentful_model icon indicating copy to clipboard operation
contentful_model copied to clipboard

A lightweight wrapper around the Contentful api gem, to make it behave more like ActiveRecord

Results 12 contentful_model issues
Sort by recently updated
recently updated
newest added

Is this project dead? - There hasn't been any commits to `contentful_rails` or `contentful_model` in a couple years. - The official docs don't link to it - There's open `contentful_rails`...

This pull request adds a catalog-info file to the repository. You will need to modify the values inside before merging it.

Had some issues with Dependabot updating the `contentful-management` in a really weird way, picking a very old version of this gem to fulfill the version constraints. I have not tested...

Not sure if this is a bug or expected behavior- feel free to close if it's the latter. I've got a model that has a rich text field with an...

At the moment changing a method in a class descending from ContentfulModel::Base requires full reload of Rails environment. Example: ```ruby class TestModel < ContentfulModel::Base self.content_type_id = 'test' def title "This...

Proposed solution to resolve https://github.com/contentful/contentful_model/issues/145

**Expectation** When calling a localized entry through the gem, I expect that traversing the hierarchy of the model will also return entries with localized fields for that locale. That is,...

This is to allow manual asset resource mapping as [described here](https://github.com/contentful/contentful.rb#custom-resource-classes).

Right now, the `#where` method exists on the `Query` class but not on the base class, meaning you can call `Post.all.where(...)` but not `Post.where(...)`, which is weird. This PR exposes...

This is related to #130. I'm not sure if this is a bug in this library or contentful/contentful-management.rb. In the initialiser for `Contentful::Management::Client` the initialised object is saved to a...