mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscussionTools
synced 2024-11-16 20:58:28 +00:00
ea68e1a8f0
Change-Id: I809524ea8d89130548964ba9e5a73f00f6089ff4
17 lines
442 B
JavaScript
17 lines
442 B
JavaScript
/**
|
|
* More information about a comment obtained from various APIs, rather than parsed from the page.
|
|
*
|
|
* @class CommentDetails
|
|
* @constructor
|
|
* @param {string} pageName Page name the reply is being saved to
|
|
* @param {number} oldId Revision ID of page at time of editing
|
|
*/
|
|
function CommentDetails( pageName, oldId ) {
|
|
this.pageName = pageName;
|
|
this.oldId = oldId;
|
|
}
|
|
|
|
OO.initClass( CommentDetails );
|
|
|
|
module.exports = CommentDetails;
|