mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
The 'tutorial_status' field on 'UserProfile' model is no longer used to show onboarding tutorial. This commit removes the 'tutorial_status' field, 'POST users/me/tutorial_status' endpoint, and 'needs_tutorial' parameter in 'page_params'. Fixes part of zulip#30043.
17 lines
373 B
Python
17 lines
373 B
Python
# Generated by Django 5.0.6 on 2024-07-25 06:59
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("zerver", "0568_mark_narrow_to_dm_with_welcome_bot_new_user_as_read"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name="userprofile",
|
|
name="tutorial_status",
|
|
),
|
|
]
|