feat: show user email in dashboard API (#19004)
* Feat: show user email in dashboard API * Fix test
This commit is contained in:
parent
19eb73b316
commit
be88cb9ba0
|
|
@ -14,6 +14,7 @@
|
|||
# KIND, either express or implied. See the License for the
|
||||
# specific language governing permissions and limitations
|
||||
# under the License.
|
||||
# pylint: disable=too-many-lines
|
||||
import json
|
||||
import logging
|
||||
from datetime import datetime
|
||||
|
|
@ -143,6 +144,7 @@ class DashboardRestApi(BaseSupersetModelRestApi):
|
|||
"owners.username",
|
||||
"owners.first_name",
|
||||
"owners.last_name",
|
||||
"owners.email",
|
||||
"roles.id",
|
||||
"roles.name",
|
||||
]
|
||||
|
|
|
|||
Loading…
Reference in New Issue