You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The changes to go out in the next version (5.0.0) are:
CHANGED: Dependency updates
REMOVED: DomainCollaborators have been removed. Please use our Domain Access Control feature.
Belongs to dnsimple/dnsimple-engineering#302
Belongs to dnsimple/dnsimple-engineering#294
See https://developer.dnsimple.com/v2/domains/collaborators/#listDomainCollaborators
107
-
108
-
:param account_id: int
109
-
The account ID
110
-
:param domain: int/str
111
-
The domain name or id
112
-
:return: dnsimple.Response
113
-
A list of collaborators for the domain in the account
114
-
"""
115
-
warnings.warn("DEPRECATION WARNING: `DomainCollaborators` have been deprecated and will be removed in the next major version. Please use our Domain Access Control feature.")
At the time of the add, a collaborator may or may not have a DNSimple account.
124
-
125
-
In case the collaborator doesn't have a DNSimple account, the system will invite her/him to register to
126
-
DNSimple first and then to accept the collaboration invitation.
127
-
128
-
In the other case, she/he is automatically added to the domain as collaborator. She/he can decide to reject
129
-
the invitation later.
130
-
131
-
See https://developer.dnsimple.com/v2/domains/collaborators/#addDomainCollaborator
132
-
133
-
:param account_id: int
134
-
The account ID
135
-
:param domain: int/str
136
-
The domain name or id
137
-
:param email: str
138
-
The email of the collaborator to be added
139
-
140
-
:return: dnsimple.Response
141
-
The collaborator added to the domain in the account
142
-
"""
143
-
warnings.warn("DEPRECATION WARNING: `DomainCollaborators` have been deprecated and will be removed in the next major version. Please use our Domain Access Control feature.")
Remove a collaborator from the domain in the account
150
-
151
-
See https://developer.dnsimple.com/v2/domains/collaborators/#removeDomainCollaborator
152
-
153
-
:param account_id: int
154
-
The account ID
155
-
:param domain: int/str
156
-
The domain name or id
157
-
:param collaborator: int
158
-
The collaborator id
159
-
160
-
:return: dnsimple.Response
161
-
An empty response
162
-
"""
163
-
warnings.warn("DEPRECATION WARNING: `DomainCollaborators` have been deprecated and will be removed in the next major version. Please use our Domain Access Control feature.")
0 commit comments