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

Product reviews API #8772

Merged
merged 24 commits into from
Jan 5, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
0f6966a
[Product Reviews API] - add API for product reviews
paulstoicareea Oct 4, 2017
c660fa9
[Documentation][API] - add product reviews api docs
paulstoicareea Oct 4, 2017
fb337a6
[Product Reviews API]: accept/reject endpoints with state machine
paulstoicareea Oct 5, 2017
0e2ccc9
[Unit Testing]: ProductReviewApi Controller
paulstoicareea Oct 5, 2017
0151d20
[Documentation]: add in toctree and map Product Reviews API
paulstoicareea Oct 5, 2017
9785c0e
[Documentation]: minor changes
paulstoicareea Oct 9, 2017
4aa26f9
[Product Reviews API] - minor changes
paulstoicareea Oct 9, 2017
de75e27
[Documentation]: fix malformed tables Product reviews API
paulstoicareea Oct 9, 2017
ca4a90a
[Product Reviews API] - minor changes for tests
paulstoicareea Oct 9, 2017
3c1048f
[Product Reviews API] - add API for product reviews
paulstoicareea Oct 4, 2017
bc07098
[Documentation][API] - add product reviews api docs
paulstoicareea Oct 4, 2017
5e41ae6
[Product Reviews API]: accept/reject endpoints with state machine
paulstoicareea Oct 5, 2017
e998b59
[Unit Testing]: ProductReviewApi Controller
paulstoicareea Oct 5, 2017
dd37af3
[Documentation]: add in toctree and map Product Reviews API
paulstoicareea Oct 5, 2017
0228602
[Documentation]: minor changes
paulstoicareea Oct 9, 2017
d571b9c
[Product Reviews API] - minor changes
paulstoicareea Oct 9, 2017
3933ed2
[Documentation]: fix malformed tables Product reviews API
paulstoicareea Oct 9, 2017
3cf247a
[Product Reviews API] - minor changes for tests
paulstoicareea Oct 9, 2017
859021c
[Documentation]: texts improvments Product reviews API
paulstoicareea Nov 17, 2017
ca795cb
Product review API syntax improvments
paulstoicareea Nov 17, 2017
78d2c96
Product Review API tests: review creation real inputs
paulstoicareea Nov 18, 2017
aca53a4
[Product Reviews API] - add API for product reviews
paulstoicareea Oct 4, 2017
27086bd
fix product reviews api test methods names, expected response
paulstoicareea Dec 5, 2017
e386f37
product reviews api test remove author, fix indentation
paulstoicareea Jan 4, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Product review API syntax improvments
  • Loading branch information
paulstoicareea committed Nov 17, 2017
commit ca795cb4059577fd20ff99b625aa649a64fef8e4
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# This file is part of the Sylius package.
# (c) Paweł Jędrzejewski
#
# @author Paul Stoica <paul.stoica18@gmail.com>

sylius_grid:
grids:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# This file is part of the Sylius package.
# (c) Paweł Jędrzejewski
#
# @author Paul Stoica <paul.stoica18@gmail.com>

sylius_admin_api_product_review:
resource: |
Expand Down Expand Up @@ -89,4 +87,4 @@ sylius_admin_api_product_review_reject:
_sylius:
state_machine:
graph: sylius_product_review
transition: reject
transition: reject
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@

/**
* @author Mateusz Zalewski <mateusz.zalewski@lakion.com>
* @author Paul Stoica <paul.stoica18@gmail.com>
*/
class ProductReviewRepository extends EntityRepository implements ProductReviewRepositoryInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

/**
* @author Mateusz Zalewski <mateusz.zalewski@lakion.com>
* @author Paul Stoica <paul.stoica18@gmail.com>
*/
interface ProductReviewRepositoryInterface extends RepositoryInterface
{
Expand Down Expand Up @@ -51,7 +50,7 @@ public function createQueryBuilderByProductCode(string $locale, string $productC

/**
* @param mixed $id
* @param string $productCode
* @param string $productCode
*
* @return ReviewInterface|null
*/
Expand Down