aboutsummaryrefslogtreecommitdiff
path: root/resources/assets/javascripts/lib/browse.js
blob: 74e6d31f3c2939af0632f4dde009c5eab3186dbb (plain)
1
2
3
4
5
6
7
const Browse = {
    selectUser: function(username) {
        window.location.href = STUDIP.URLHelper.getURL('dispatch.php/profile', { username: username });
    }
};

export default Browse;