Skip to content

Commit

Permalink
Add Extends clause to stub code of new server-side class (#1220)
Browse files Browse the repository at this point in the history
  • Loading branch information
gjsjohnmurray authored Aug 18, 2023
1 parent e03c0e3 commit 4ebf10b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/FileSystemProvider/FileSystemProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export function generateFileContent(
preamble.push(nextLine);
}
if (content.length === 0) {
content.push(`Class ${className}`, "{", "}");
content.push(`Class ${className} Extends %RegisteredObject`, "{", "}");
}
return {
content,
Expand Down

0 comments on commit 4ebf10b

Please sign in to comment.