NodeBB/NodeBB

View on GitHub
public/src/client/account/following.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';


define('forum/account/following', ['forum/account/header'], function (header) {
    const Following = {};

    Following.init = function () {
        header.init();
    };

    return Following;
});