Skip to content
Draft
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
7288ab1
WIP: Add embeddable to the post and student. Will likely want to spec…
brianhogg Jun 17, 2025
f7a4c05
Changelog.
brianhogg Jun 18, 2025
7d9f3fb
Adding more data to show in webhooks and when _embed query param adde…
brianhogg Jun 18, 2025
b49702e
Removing embed from collections
brianhogg Jun 18, 2025
c1b26e2
Avoid error if core LifterLMS is deactivated.
brianhogg Jun 20, 2025
9cee054
Allow retrieving all progress for a student rather than just a specif…
brianhogg Jun 24, 2025
9469f55
Fixing warning for no pagination args.
brianhogg Jun 24, 2025
562a93b
Fixing individual link.
brianhogg Jun 24, 2025
cb4c5f1
Adding note about maybe changing to getting more items to check progr…
brianhogg Jun 24, 2025
a65132d
WIP: Initial quizzes controller.
brianhogg Jun 24, 2025
49974e2
Quiz attempts controller.
brianhogg Jun 26, 2025
745a7ea
Refactor to use LLMS_Query_Quiz_Attempt.
brianhogg Jun 26, 2025
db78f15
WIP: Adding quiz attempts endpoint.
brianhogg Jun 26, 2025
7524e4e
Quiz attempt completed webhook.
brianhogg Jun 26, 2025
8200ff7
Changelogs.
brianhogg Jun 26, 2025
7c1ef12
WIP: Initial orders endpoint.
brianhogg Jun 26, 2025
4325188
Filter "llms-" out of status. Read-only for order items and collection.
brianhogg Jun 26, 2025
f5a10fc
Fixing comment.
brianhogg Jun 26, 2025
133bd2a
Adding billing email.
brianhogg Jun 26, 2025
deba91a
WIP: Adding additional fields
brianhogg Jun 26, 2025
d336c97
Fixing comments.
brianhogg Jun 27, 2025
aa4c21f
Fixing comments.
brianhogg Jun 27, 2025
d0ec7ed
FIx schema base.
brianhogg Jun 27, 2025
20f861f
More comment fixes.
brianhogg Jun 27, 2025
0819f3b
Removing add-on topic from core. Allow generic webhook rest api build…
brianhogg Jun 27, 2025
d7c814f
Adding assignment webhook topic and hooks within the add-on.
brianhogg Jun 27, 2025
76f3b86
Base certificate endpoint.
brianhogg Jun 27, 2025
16f4142
awarded-certificates endpoint.
brianhogg Jun 27, 2025
46ff338
Awarded-certificates webhook and API mods.
brianhogg Jul 3, 2025
6762e68
Changelog.
brianhogg Jul 3, 2025
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
Removing embed from collections
  • Loading branch information
brianhogg committed Jun 18, 2025
commit b49702e61c44d2bf191a9a447d514a44a3a7675b
Original file line number Diff line number Diff line change
Expand Up @@ -1068,10 +1068,9 @@ public function prepare_links( $enrollment, $request ) {
),
),
'collection' => array(
'href' => rest_url(
'href' => rest_url(
sprintf( '/%s/%s/%d/%s', 'llms/v1', 'students', $enrollment->student_id, 'enrollments' )
),
'embeddable' => true,
),
'student' => array(
'href' => rest_url(
Expand Down
Loading