-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmapping.example.json
More file actions
32 lines (32 loc) · 1 KB
/
mapping.example.json
File metadata and controls
32 lines (32 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"generated_at": "2025-01-15 12:00:00",
"total_users": 100,
"mapped_users": 98,
"not_found_users": 2,
"url_formats": {
"old_format": "/sub/{username}/{key}",
"new_format": "/sub/{token}"
},
"mappings": {
"example_user1": {
"user_id": 1,
"old_subscription_url": "/sub/example_user1/abc123def456789example",
"new_subscription_url": "/sub/ZXhhbXBsZV91c2VyMSwxNzM2OTQwMDAwExAmPlEaBc"
},
"john_doe": {
"user_id": 42,
"old_subscription_url": "/sub/john_doe/def789ghi012345example",
"new_subscription_url": "/sub/am9obl9kb2UsMTczNjk0MDAwMBpKcXRvWmNk"
},
"test_account": {
"user_id": 99,
"old_subscription_url": "/sub/test_account/ghi345jkl678901example",
"new_subscription_url": "/sub/dGVzdF9hY2NvdW50LDE3MzY5NDAwMDAYnRmKlPqWx"
},
"demo_user": {
"user_id": 150,
"old_subscription_url": "/sub/demo_user/jkl567mno234567example",
"new_subscription_url": "/sub/ZGVtb191c2VyLDE3MzY5NDAwMDAKmNxPqRsTu"
}
}
}