Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/solidusio-contrib/solidus_comments
:speech_balloon: Let admins comment on objects in your Solidus backend.
https://github.com/solidusio-contrib/solidus_comments
admin comments ecommerce extension solidus store
Last synced: 9 days ago
JSON representation
:speech_balloon: Let admins comment on objects in your Solidus backend.
- Host: GitHub
- URL: https://github.com/solidusio-contrib/solidus_comments
- Owner: solidusio-contrib
- License: bsd-3-clause
- Created: 2016-03-16T01:21:26.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2024-04-10T05:55:18.000Z (9 months ago)
- Last Synced: 2024-12-20T14:33:01.880Z (21 days ago)
- Topics: admin, comments, ecommerce, extension, solidus, store
- Language: Ruby
- Homepage:
- Size: 201 KB
- Stars: 10
- Watchers: 10
- Forks: 21
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Solidus Comments
==============[![CircleCI](https://circleci.com/gh/solidusio-contrib/solidus_comments.svg?style=svg)](https://circleci.com/gh/solidusio-contrib/solidus_comments)
Solidus Comments is an extension for Solidus to allow commenting on different models via the
admin ui and currently supports Orders & Shipments.Solidus Comments also supports optional comment Types which can be defined per comment-able
object (i.e. Order, Shipment, etc) via the admin Configuration tab.This is based on a fork / rename of jderrett/spree-order-comments, and subsequently spree/spree-comments
Notes:
* Comments are create-only. You cannot edit or remove them from the Admin UI.
Installation
------------Add the following to your Gemfile (or check Versionfile for Solidus versions requirements):
gem "solidus_comments"
Run:
```shell
bundle install
bundle exec rails g solidus_comments:install
```Run the migrations if you did not during the installation generator:
bundle exec rake db:migrate
Start your server:
rails s