# extendify/3.0.4/src/Agent/workflows/content/edit-post-strings.js

Extendify, version 3.0.4. 15 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.0.4/code/src/Agent/workflows/content/edit-post-strings.js
- Raw: https://pluginprobe.com/plugins/extendify/3.0.4/raw/src/Agent/workflows/content/edit-post-strings.js
- Modified: 2025-09-09T15:55:14+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/extendify/3.0.4/code/src/Agent/workflows/content/edit-post-strings.js#L10-L20`.

```javascript
import { UpdatePostConfirm } from '@agent/workflows/content/components/UpdatePostConfirm';

const { context, abilities } = window.extAgentData;

export default {
	available: () =>
		abilities?.canEditPosts &&
		!context?.adminPage &&
		context?.postId &&
		!context?.isBlogPage &&
		context.usingBlockEditor,
	id: 'edit-post-strings',
	whenFinished: { component: UpdatePostConfirm },
};

```
