This repository was archived by the owner on Apr 26, 2024. It is now read-only.
File tree 3 files changed +13
-10
lines changed
3 files changed +13
-10
lines changed Original file line number Diff line number Diff line change
1
+ Add `track_puppeted_user_ips` config flag to track puppeted user IP addresses. This also includes them in monthly active user counts.
Original file line number Diff line number Diff line change @@ -1503,11 +1503,12 @@ room_prejoin_state:
1503
1503
# additional_event_types:
1504
1504
# - org.example.custom.event.type
1505
1505
1506
- # If enabled, puppeted user IP's can also be tracked. By default when
1507
- # puppeting another user, the user who has created the access token
1508
- # for puppeting is tracked. If this is enabled, both requests are tracked.
1509
- # Implicitly enables MAU tracking for puppeted users.
1510
- # track_puppeted_user_ips: false
1506
+ # By default when puppeting another user, the user who has created the
1507
+ # access token for puppeting is tracked. If this is enabled, both
1508
+ # requests are tracked. Implicitly enables MAU tracking for puppeted users.
1509
+ # Uncomment to also track puppeted user IP's.
1510
+ #
1511
+ # track_puppeted_user_ips: true
1511
1512
1512
1513
1513
1514
# A list of application service config files to use
Original file line number Diff line number Diff line change @@ -61,11 +61,12 @@ def generate_config_section(cls, **kwargs) -> str:
61
61
#additional_event_types:
62
62
# - org.example.custom.event.type
63
63
64
- # If enabled, puppeted user IP's can also be tracked. By default when
65
- # puppeting another user, the user who has created the access token
66
- # for puppeting is tracked. If this is enabled, both requests are tracked.
67
- # Implicitly enables MAU tracking for puppeted users.
68
- #track_puppeted_user_ips: false
64
+ # By default when puppeting another user, the user who has created the
65
+ # access token for puppeting is tracked. If this is enabled, both
66
+ # requests are tracked. Implicitly enables MAU tracking for puppeted users.
67
+ # Uncomment to also track puppeted user IP's.
68
+ #
69
+ #track_puppeted_user_ips: true
69
70
""" % {
70
71
"formatted_default_state_types" : formatted_default_state_types
71
72
}
You can’t perform that action at this time.
0 commit comments