image-tagger/module/settings/user.mjs

12 lines
301 B
JavaScript

import { __ID__ } from "../consts.mjs";
export function registerUserSettings() {
game.settings.register(__ID__, `openForEditImage`, {
name: `IT.settings.openForEditImage.name`,
hint: `IT.settings.openForEditImage.hint`,
scope: `user`,
type: Boolean,
default: true,
config: true,
});
};