Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,16 @@ vendor
#=============================================================#
assets/build/*
blocks/**/build/*


# ===================================#
# Claude Code #
# ===================================#
# Keep shared AI instructions tracked (root CLAUDE.md, .claude/rules/, .claude/skills/);
# ignore machine-local runtime artifacts.
.claude/worktrees/
.claude/plans/
.claude/backlog/
.claude/notes/
.claude/settings.local.json
CLAUDE.local.md
2 changes: 1 addition & 1 deletion src/Handlers/Security/RestApiFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public static function restApiWhitelistOnly(
$route = $request->get_route();

// Allow access for editors and administrators only
if (current_user_can('edit_posts')) {
if (current_user_can('edit_posts') || current_user_can('edit_pages')) {
return $result;
}

Expand Down
Loading