Ahtisham Shahid
039583f88f
feat: added reported notification type ( #34067 )
2024-01-30 12:07:49 +05:00
Muhammad Adeel Tajamul
dd4a97d410
feat: added thread_flagged and comment_flagged signals in legacy discussion ( #33949 )
2023-12-29 11:29:17 +05:00
Cristhian Garcia
9e65024744
feat: emit signal for thread, response, and comment created events ( #33395 )
2023-10-30 11:46:39 -04:00
Feanil Patel
7202c22e1d
Merge pull request #33373 from openedx/feanil/update_password_length_default
...
feat: Update the minimum password length.
2023-10-17 10:08:15 -04:00
SaadYousaf
bef05ab664
feat: add tracking event for following post
2023-10-14 02:00:34 +05:00
Feanil Patel
64e91d4080
test: Update to an even longer password.
2023-10-12 10:31:13 -04:00
Feanil Patel
1e2ea85372
test: Update more tests that had short passwords.
2023-10-10 16:36:26 -04:00
Usama Sadiq
a0076c1243
fix: fix django 41 deprecation warnings ( #33099 )
2023-08-28 13:32:39 +05:00
Usama Sadiq
7710e60328
fix: fix middleware get_response parameter deprecation warning ( #33067 )
2023-08-22 15:52:30 +05:00
Usama Sadiq
3949c73b35
fix: fix request.is_ajax() deprecation warning ( #33055 )
...
* fix: fix request.is_ajax() deprecation warning
2023-08-21 15:59:00 +05:00
SaadYousaf
32e792d1f4
feat: add differentiation for tracking in-context and mfe events
2023-03-09 07:32:00 +05:00
Ahtisham Shahid
acbb66a911
feat: added backward compatibility for urls and images in threads ( #31807 )
...
* feat: added backward compatibility for URLs and images in threads
* feat: added unit tests for markdown converter
2023-03-06 11:23:11 +05:00
SaadYousaf
4cc9bfb6cf
fix: update response for marked events for discussion content
2023-02-21 15:39:35 +05:00
Muhammad Adeel Tajamul
9f7bba85fc
feat: added reverse_order param in comments sort ( #31667 )
...
Co-authored-by: adeel.tajamul <adeel.tajamul@arbisoft.com >
2023-02-13 12:58:13 +05:00
0x29a
fd191db332
refactor: rename module (or item) -> block within remaining lms
...
Also, removed `_iter_scorable_xmodules` method from `lms/djangoapps/grades/transformer.py` file.
2023-01-30 18:15:23 +01:00
Arunmozhi
d417a7561f
refactor: rename ItemFactory to BlockFactory
2023-01-23 14:47:47 +01:00
0x29a
0df1411636
refactor: xmodule/course_module.py -> xmodule/course_block.py
2022-12-19 17:48:49 +01:00
Bernard Szabo
377edc2f4d
feat: TNL-10136 Propagate changes from last PR
2022-12-13 17:19:41 -05:00
SaadYousaf
d71b21156b
feat: add forum response event for marking responses as answered or endorsed
2022-12-05 16:35:52 +05:00
SaadYousaf
1a0906bc7a
feat: add discussion event coverage for legacy experience.
2022-11-21 14:59:50 +05:00
SaadYousaf
1cb1e2f61d
fix: add fix for search event for learner search in discussions
2022-11-21 14:29:14 +05:00
SaadYousaf
c0631c320e
fix: legacy coverage and add missing properties for reported events
2022-11-17 13:03:47 +05:00
SaadYousaf
17df3d4e17
feat: add discussion reported and unreported events
2022-11-01 15:57:13 +05:00
Sagirov Eugeniy
8f88422c4a
test: prepare tests for removing support for children in Old Mongo
2022-10-28 11:43:20 -04:00
SaadYousaf
8ecb39826a
fix: add missing context for discussion events
2022-10-03 15:26:31 +05:00
SaadYousaf
6aca8abe87
feat: add event for edited content in discussions
2022-10-03 15:00:03 +05:00
Muhammad Adeel Tajamul
e96102b2f1
feat: removed discussion sort options from advanced settings ( #30963 )
...
Co-authored-by: adeel.tajamul <adeel.tajamul@arbisoft.com >
2022-09-30 11:42:59 +05:00
SaadYousaf
85a8b39735
feat: add event for content deletion for discussions
2022-09-21 13:20:58 +05:00
Ahtisham Shahid
eca87000c4
Created a edx.forum.thread.locked event ( #30964 )
...
* feat: added new discussions event edx.forum.thread.locked
2022-09-15 11:18:32 +05:00
Saad Yousaf
3b978c4157
feat: point to new discussions MFE on Discussion Tab ( #30896 )
...
Co-authored-by: SaadYousaf <saadyousaf@A006-00314.local >
2022-08-29 15:18:26 +05:00
SaadYousaf
98262c088d
feat: send email to moderators after content is reported
2022-04-27 22:18:56 +05:00
SaadYousaf
149ca028d7
feat: update discussion settings API to handle changes reported_content_email_notification field
2022-04-13 15:10:48 +05:00
Robert Raposa
3065048ba6
Merge pull request #30027 from openedx/robrap/ARCHBOM-2055-update-cookie-logging
...
feat: enhance cookie monitoring and logging
2022-03-10 09:28:45 -05:00
SaadYousaf
e343dee195
fix: add event tracking for viewing thread for discussions api
2022-03-10 14:38:59 +05:00
Robert Raposa
8b775961a6
fix: rename table_blacklist to table_ignorelist
2022-03-09 16:43:47 -05:00
Braden MacDonald
dcb7ef8821
feat: Read course indexes from MySQL, not MongoDB ( #29184 )
...
Description
This is a follow up to #29058 and #29413 . This is the next step in moving part of the modulestore data (the course indexes / "active versions" table) from MongoDB to MySQL.
There are four steps planned in moving course index data to MySQL:
Step 1: create the tables in MySQL, start writing to MySQL + MongoDB ✅ done
Step 2: migrate all remaining courses to MySQL ✅ done
Step 3: switch reads from MongoDB to MySQL (this PR)
Step 4 (much later, once we know this is working well): stop writing to MongoDB altogether.
Supporting information
OpenCraft Jira ticket: MNG-2557
Status
✅ Tested with a large Open edX instance is in progress.
Testing instructions
Try making changes in Studio and verify that they work fine.
Deadline
None
2022-03-09 10:21:09 -05:00
Michael Terry
e81c4fe49d
Merge pull request #29911 from openedx/mikix/more-old-mongo-test-cleanup
...
test: more Old Mongo removal from tests
2022-02-11 15:10:45 -05:00
Michael Terry
b905de757b
test: more Old Mongo removal from tests
...
Convert more tests from MONGO_AMNESTY to SPLIT modulestores.
This is in preparation for just wholesale denying access to Old
Mongo, so I either converted tests to split or just deleted some
test variants that were Old Mongo specific. (e.g. ddt lines)
2022-02-11 14:50:30 -05:00
AsadAzam
93d8a123d3
fix: remove visibility of anonymous posts for ta ( #29883 )
2022-02-09 11:02:11 +05:00
Michael Terry
cb1bb7fa64
test: switch default test store to the split store
...
It's long past time that the default test modulestore was Split,
instead of Old Mongo. This commit switches the default store and
fixes some tests that now fail:
- Tests that didn't expect MFE to be enabled (because we don't
enable MFE for Old Mongo) - opt out of MFE for those
- Tests that hardcoded old key string formats
- Lots of other random little differences
In many places, I didn't spend much time trying to figure out how to
properly fix the test, and instead just set the modulestore to Old
Mongo.
For those tests that I didn't spend time investigating, I've set
the modulestore to TEST_DATA_MONGO_AMNESTY_MODULESTORE - search for
that string to find further work.
2022-02-04 14:32:50 -05:00
Kshitij Sobti
2bbf447ab5
feat: banner for staff users that displays a message for testing the new MFE experience ( #29698 )
...
Adds a new banner allowing staff users to preview and switch between the new and legacy forum experience.
2022-01-18 11:18:59 +05:00
Kshitij Sobti
b5f045dc5f
fix: update discussions MFE path [BD-38] [TNL-9347] ( #29691 )
...
* fix: update discussiosn MFE path
* squash!: fix tests
2022-01-06 18:34:53 +05:00
Jawayria
332f0f1ea7
chore: Applied lint-amnesty on lms/djangoapps/discussion
2021-12-20 16:25:03 +05:00
Kshitij Sobti
606fb95059
feat: return user roles and privilege information in course metadata ( #29448 )
...
The frontends need to be aware of a user's privileges in order to know what operations are supported. This adds the user roles and privilege information to the discussion metadata API.
2021-12-06 11:21:25 +05:00
Kshitij Sobti
c8bd924e23
feat: Add support for using the discussions MFE UI instead of existing UI [BD-38] [TNL-9228] ( #29285 )
...
* feat: Add support for using the discussions MFE UI instead of existing UI
Adds a new course waffle flag that when set along with the discussions MFE URL shows the discussions MFE UI instead of the regular UI.
* test: add tests
* squash!: more consistent url name
2021-11-23 14:56:25 +05:00
M. Zulqarnain
d9a91d4c38
BOM-2781: Django codemods on LMS (2) ( #28852 )
...
* feat: Django codemods on LMS (2)
2021-11-11 17:52:57 +05:00
Kshitij Sobti
79cd0b1ef8
feat: Adds discussions settings for new discusions experience [BD-38] [TNL-8621] [BB-4854] ( #29131 )
...
* feat: Adds discussions settings for new discusions experience
This commit adds new discussions settings for the new discussions experience. These are stored in the course so they can be a part of course import/export flow.
These are also added to the discussions configuraiton API to allow MFEs to update the settings.
The discussions API is currently available via LMS, however that means it cannot save changes to the modulestore. This also adds the API to the studio config so it can now also be accessed from studio and be used to save course settings.
* fix: tests
2021-10-28 11:56:17 +05:00
connorhaugh
b01e773d2b
feat: cache course index queries ( #29107 )
...
* feat: store split modulestore's course indexes in Django/MySQL
Course outline generation is calling active_versions hundreds or even thousands of times on course_publish. In practice, the handling of a block requires a fetch of the course index. That requires a call to the active_versions table for each touching of a block. In larger courses, that can mean 1000s of calls to the db to retrieve them. A quick solution to this problem is to use a request cache, so we don't have to query the slow db every time and memoize the relevant data
[An example run can be seen here.](https://one.newrelic.com/launcher/nr1-core.explorer?platform[filters]=IihuYW1lIGxpa2UgJ3Byb2QtZWR4LWVkeGFwcCcgb3IgaWQgPSAncHJvZC1lZHgtZWR4YXBwJyBvciBkb21haW5JZCA9ICdwcm9kLWVkeC1lZHhhcHAnKSBhbmQgKG5hbWUgbGlrZSAnbG1zJyBvciBpZCA9ICdsbXMnIG9yIGRvbWFpbklkID0gJ2xtcycpIg==&platform[accountId]=88178&platform[timeRange][begin_time]=1626715880701&platform[timeRange][end_time]=1627320680701&pane=eyJuZXJkbGV0SWQiOiJhcG0tbmVyZGxldHMudHJhbnNhY3Rpb25zIiwiZW50aXR5R3VpZCI6Ik9EZ3hOemg4UVZCTmZFRlFVRXhKUTBGVVNVOU9mRFk1TVRNM05EUTROQSIsInNlbGVjdGVkU2VyaWVzIjoiZjAzYjNmNzY5OTQ0MjlmOTFhYWQ4MDBkNTEwZTU5MDM5OWNjMzNhMSIsImRyaWxsZG93biI6eyJ0cmFuc2FjdGlvbk5hbWUiOiJPdGhlclRyYW5zYWN0aW9uL0NlbGVyeS9jbXMuZGphbmdvYXBwcy5jb250ZW50c3RvcmUudGFza3MudXBkYXRlX291dGxpbmVfZnJvbV9tb2R1bGVzdG9yZV90YXNrIn19&cards[0]=eyJuZXJkbGV0SWQiOiJhcG0tbmVyZGxldHMudHJhbnNhY3Rpb24tdHJhY2UiLCJ0cmFjZUlkIjoiY2I2OGNkMDktZWI5Yi0xMWViLWJkY2QtMDI0MmFjMTEwMDBlXzI1MjU0MV8zMTgzMTMiLCJlbnRpdHlHdWlkIjoiT0RneE56aDhRVkJOZkVGUVVFeEpRMEZVU1U5T2ZEWTVNVE0zTkRRNE5BIn0=&sidebars[0]=eyJuZXJkbGV0SWQiOiJucjEtY29yZS5hY3Rpb25zIiwic2VsZWN0ZWROZXJkbGV0Ijp7Im5lcmRsZXRJZCI6ImFwbS1uZXJkbGV0cy50cmFuc2FjdGlvbnMifSwiZW50aXR5R3VpZCI6Ik9EZ3hOemg4UVZCTmZFRlFVRXhKUTBGVVNVOU9mRFk1TVRNM05EUTROQSJ9&state=d9946155-ea53-cb11-c1c0-cc873d6c7d39 )
Useful information to include:
In theory, this should provide a minor performance boost to authors and learners, and be noticeable in the above function trace, once live on prod. Note, that in several places the cache must be invalidated, as to prevent a stale cache.
Co-authored-by: Braden MacDonald <braden@opencraft.com >
2021-10-27 13:53:10 -04:00
Awais Jibran
cfd78455df
fix: update discussion API permissions ( #29127 )
2021-10-27 21:05:34 +05:00
David Ormsbee
5d0132305d
Revert "feat: Adds discussions settings for new discusions experience ( #28749 )"
...
This reverts commit bb0c03123c .
2021-10-27 10:40:12 -04:00